We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b630eaf + cae0d87 commit 900fc33Copy full SHA for 900fc33
2 files changed
.pre-commit-config.yaml
@@ -1,14 +1,13 @@
1
repos:
2
- repo: https://github.com/codespell-project/codespell
3
- rev: v2.2.4
+ rev: v2.3.0
4
hooks:
5
- id: codespell
6
additional_dependencies: [tomli]
7
- # args: ["--write-changes"] # consider enabling for auto-fif
8
- exclude: "test/fixtures/"
+ exclude: ^test/fixtures/
9
10
- repo: https://github.com/astral-sh/ruff-pre-commit
11
- rev: v0.4.3
+ rev: v0.6.0
12
13
- id: ruff
14
args: ["--fix"]
@@ -17,22 +16,23 @@ repos:
17
16
exclude: ^git/ext/
18
19
- repo: https://github.com/shellcheck-py/shellcheck-py
20
- rev: v0.9.0.6
+ rev: v0.10.0.1
21
22
- id: shellcheck
23
args: [--color]
24
exclude: ^test/fixtures/polyglot$|^git/ext/
25
26
- repo: https://github.com/pre-commit/pre-commit-hooks
27
- rev: v4.5.0
+ rev: v4.6.0
28
29
- id: end-of-file-fixer
30
- exclude: test/fixtures/
+ exclude: ^test/fixtures/|COPYING|LICENSE
+ - id: check-symlinks
31
- id: check-toml
32
- id: check-yaml
33
- id: check-merge-conflict
34
35
- repo: https://github.com/abravalheri/validate-pyproject
36
- rev: v0.16
+ rev: v0.19
37
38
- - id: validate-pyproject
+ - id: validate-pyproject
pyproject.toml
@@ -84,6 +84,6 @@ lint.unfixable = [
84
85
86
[tool.codespell]
87
-ignore-words-list="gud,doesnt"
+ignore-words-list="afile,assertIn,doesnt,gud,uptodate"
88
#count = true
89
quiet-level = 3
0 commit comments