Skip to content

Commit 77b2570

Browse files
committed
update
1 parent cb211c0 commit 77b2570

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

template/.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ trim_trailing_whitespace = true
88
insert_final_newline = true
99
end_of_line = lf
1010

11-
[{*.yaml, *.yml}]
11+
[*.{yaml,yml}]
1212
indent_size = 2

template/Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ clean:
4444

4545
# static type check with mypy
4646
typecheck: _require-uv
47-
uv run mypy
47+
uv run mypy
4848

4949
# check code for common misspellings
5050
spell:
5151
codespell
5252

5353
# run all quality checks
54-
check: format lint coverage typecheck
54+
check: format lint coverage typecheck codespell
5555

5656
# list available recipes
5757
help:

template/pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ keywords = [
6868

6969
[project.optional-dependencies]
7070
test = ["pytest", "coverage"]
71-
dev = ["pytest", "ruff", "pre-commit", "coverage", "mypy"]
71+
dev = ["pytest", "coverage", "ruff", "pre-commit", "mypy", "codespell"]
7272

7373
[project.urls]
7474
Repository = "{{ repository_url }}"

0 commit comments

Comments
 (0)