Skip to content

Commit 1189758

Browse files
authored
Merge pull request #1 from cambiotraining/crit-revisions - CRIT revisions
Crit revisions
2 parents 8ae4c21 + 087e45b commit 1189758

102 files changed

Lines changed: 6434 additions & 1692 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ _site
2121
# Jupyter cache
2222
.jupyter_cache
2323
/.luarc.json
24+
25+
**/*.quarto_ipynb

.panache.toml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# ------------------------------------------------------------
2+
# Flavor
3+
# ------------------------------------------------------------
4+
# .qmd files are always treated as "quarto" automatically.
5+
# .Rmd files are always treated as "rmarkdown" automatically.
6+
# This sets the default for plain .md files.
7+
flavor = "pandoc"
8+
9+
# ------------------------------------------------------------
10+
# File selection
11+
# ------------------------------------------------------------
12+
extend-exclude = [
13+
".*/", # all hidden directories (.git, .github, .claude, .agents, etc.)
14+
"renv/", # R package cache — generated, never hand-edited
15+
"tests/**/*",
16+
]
17+
18+
# Include only the specific files and directories we care about.
19+
include = [
20+
"index.md",
21+
"setup.md",
22+
"materials/**/*.md",
23+
"materials/**/*.qmd",
24+
"materials/**/*.Rmd",
25+
]
26+
27+
# ------------------------------------------------------------
28+
# Formatting style
29+
# ------------------------------------------------------------
30+
[format]
31+
wrap = "sentence" # semantic line breaks
32+
math-delimiter-style = "dollars" # normalise to $...$ / $$...$$
33+
math-indent = 0
34+
tab-stops = "normalize"
35+
tab-width = 2 # applies to Markdown (not code blocks)
36+
37+
# ------------------------------------------------------------
38+
# Code formatters
39+
# ------------------------------------------------------------
40+
[formatters]
41+
r = "air"
42+
python = "ruff"
43+
bash = "shfmt"
44+
45+
# ------------------------------------------------------------
46+
# Code linters
47+
# ------------------------------------------------------------
48+
[linters]
49+
r = "jarl"
50+
python = "ruff"
51+
bash = "shellcheck"
52+
53+
# ------------------------------------------------------------
54+
# Other rules
55+
# ------------------------------------------------------------
56+
[lint.rules]
57+
heading-hierarchy = false # Disabled as callout boxes may not respect hierarchy

README.md

Lines changed: 67 additions & 0 deletions

_freeze/materials/01-LoadingData/execute-results/html.json

Lines changed: 17 additions & 0 deletions
Large diffs are not rendered by default.
1.29 MB
1.41 MB
55.2 KB
129 KB

_freeze/materials/02a-Filtering/execute-results/html.json

Lines changed: 17 additions & 0 deletions
Large diffs are not rendered by default.
88.2 KB

0 commit comments

Comments
 (0)