Skip to content

Commit a79c291

Browse files
committed
refactor: 🚚 moved .typos.toml back from .config/, didn't work
1 parent 8aa7044 commit a79c291

7 files changed

Lines changed: 5 additions & 7 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ repos:
2929
- id: typos
3030

3131
- repo: https://github.com/rvben/rumdl-pre-commit
32-
rev: v0.1.94
32+
rev: v0.1.96
3333
hooks:
3434
- id: rumdl-fmt # Auto-format
File renamed without changes.

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,5 @@
2727
},
2828
"files.insertFinalNewline": true,
2929
"conventionalCommits.emojiFormat": "emoji",
30-
"conventionalCommits.promptScopes": false,
31-
"typos.config": ".config/typos.toml"
30+
"conventionalCommits.promptScopes": false
3231
}

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ update-quarto-theme:
2828
# Update files in the template from the Copier parent folder
2929
sync-template-files:
3030
cp CODE_OF_CONDUCT.md .pre-commit-config.yaml .typos.toml .editorconfig template/
31-
cp .config/* template/.config/
31+
cp .config/rumdl.toml template/.config/
3232
mkdir -p template/tools
3333
cp tools/get-contributors.sh template/tools/
3434
cp .github/pull_request_template.md template/.github/
3535

3636
# Check for spelling errors in files
3737
check-spelling:
38-
uvx typos --config .config/typos.toml
38+
uvx typos
3939

4040
# Check that URLs work
4141
check-urls:

template/.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"python.testing.pytestEnabled": true,
3636
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
3737
"mypy.runUsingActiveInterpreter": true,
38-
"typos.config": ".config/typos.toml",
3938
"ruff.configuration": ".config/ruff.toml",
4039
"mypy.configFile": ".config/mypy.ini"
4140
}

template/justfile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ check-security:
103103

104104
# Check for spelling errors in files
105105
check-spelling:
106-
uv run typos --config .config/typos.toml
106+
uv run typos
107107

108108
# Install lychee from https://lychee.cli.rs/guides/getting-started/
109109
# Check that URLs work

0 commit comments

Comments
 (0)