@@ -2,16 +2,16 @@ exclude: ^(docs|tests/files|tasks.py)
2
2
3
3
ci :
4
4
autoupdate_schedule : monthly
5
- skip : [ mypy, pyright ]
5
+ skip : [mypy, pyright]
6
6
autofix_commit_msg : pre-commit auto-fixes
7
7
autoupdate_commit_msg : pre-commit autoupdate
8
8
9
9
repos :
10
10
- repo : https://github.com/astral-sh/ruff-pre-commit
11
- rev : v0.5.4
11
+ rev : v0.5.6
12
12
hooks :
13
13
- id : ruff
14
- args : [ --fix, --unsafe-fixes ]
14
+ args : [--fix, --unsafe-fixes]
15
15
- id : ruff-format
16
16
17
17
- repo : https://github.com/pre-commit/pre-commit-hooks
@@ -22,24 +22,24 @@ repos:
22
22
- id : trailing-whitespace
23
23
24
24
- repo : https://github.com/pre-commit/mirrors-mypy
25
- rev : v1.11.0
25
+ rev : v1.11.1
26
26
hooks :
27
27
- id : mypy
28
28
29
29
- repo : https://github.com/codespell-project/codespell
30
30
rev : v2.3.0
31
31
hooks :
32
32
- id : codespell
33
- stages : [ commit, commit-msg ]
34
- exclude_types : [ html ]
35
- additional_dependencies : [ tomli ] # needed to read pyproject.toml below py3.11
33
+ stages : [commit, commit-msg]
34
+ exclude_types : [html]
35
+ additional_dependencies : [tomli] # needed to read pyproject.toml below py3.11
36
36
exclude : src/pymatgen/analysis/aflow_prototypes.json
37
37
38
38
- repo : https://github.com/MarcoGorelli/cython-lint
39
39
rev : v0.16.2
40
40
hooks :
41
41
- id : cython-lint
42
- args : [ --no-pycodestyle ]
42
+ args : [--no-pycodestyle]
43
43
- id : double-quote-cython-strings
44
44
45
45
- repo : https://github.com/adamchainz/blacken-docs
@@ -56,15 +56,15 @@ repos:
56
56
# MD033: no inline HTML
57
57
# MD041: first line in a file should be a top-level heading
58
58
# MD025: single title
59
- args : [ --disable, MD013, MD024, MD025, MD033, MD041, "--" ]
59
+ args : [--disable, MD013, MD024, MD025, MD033, MD041, "--"]
60
60
61
61
- repo : https://github.com/kynan/nbstripout
62
62
rev : 0.7.1
63
63
hooks :
64
64
- id : nbstripout
65
- args : [ --drop-empty-cells, --keep-output ]
65
+ args : [--drop-empty-cells, --keep-output]
66
66
67
67
- repo : https://github.com/RobertCraigie/pyright-python
68
- rev : v1.1.373
68
+ rev : v1.1.374
69
69
hooks :
70
70
- id : pyright
0 commit comments