Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions template/.rumdl.toml → template/.config/rumdl.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[global]
# 72 to match what we have currently been using
line_length = 72
flavor = "quarto"
exclude = [
# Common directories to exclude
".git",
".github",
# This is auto-generated from the qmd version
"README.md",
# This has it's own structure
"LICENSE.md",
# This is autogenerated from the `.qmd` version
"**/README.md",
# This has its own structure
"**/LICENSE.md",
# `_badges.qmd` gets mangled by rumdl
"**/_badges.qmd",
# Changelog has it's own (auto-generated) structure, ignore it.
"CHANGELOG.md",
]

# List style: `-`
Expand Down
9 changes: 5 additions & 4 deletions template/.typos.toml → template/.config/typos.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[files]
extend-exclude = [
"*.html",
"*.json",
"*.log",
"*.tex",
"*.css",
"*.svg",
"*.json",
".quarto/*",
"_site/*",
"_book/*",
"_extensions/*",
"*.svg",
"*.bib",
# If creating releases and using git-cliff, the hashes in the CHANGELOG can
# falsely trigger typos.
"CHANGELOG.md",
]
Loading