@@ -2,16 +2,16 @@ exclude: ^(docs|tests/files|tasks.py)
22
33ci :
44 autoupdate_schedule : monthly
5- skip : [ mypy, pyright ]
5+ skip : [mypy, pyright]
66 autofix_commit_msg : pre-commit auto-fixes
77 autoupdate_commit_msg : pre-commit autoupdate
88
99repos :
1010 - repo : https://github.com/astral-sh/ruff-pre-commit
11- rev : v0.5.4
11+ rev : v0.5.6
1212 hooks :
1313 - id : ruff
14- args : [ --fix, --unsafe-fixes ]
14+ args : [--fix, --unsafe-fixes]
1515 - id : ruff-format
1616
1717 - repo : https://github.com/pre-commit/pre-commit-hooks
@@ -22,24 +22,24 @@ repos:
2222 - id : trailing-whitespace
2323
2424 - repo : https://github.com/pre-commit/mirrors-mypy
25- rev : v1.11.0
25+ rev : v1.11.1
2626 hooks :
2727 - id : mypy
2828
2929 - repo : https://github.com/codespell-project/codespell
3030 rev : v2.3.0
3131 hooks :
3232 - 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
3636 exclude : src/pymatgen/analysis/aflow_prototypes.json
3737
3838 - repo : https://github.com/MarcoGorelli/cython-lint
3939 rev : v0.16.2
4040 hooks :
4141 - id : cython-lint
42- args : [ --no-pycodestyle ]
42+ args : [--no-pycodestyle]
4343 - id : double-quote-cython-strings
4444
4545 - repo : https://github.com/adamchainz/blacken-docs
@@ -56,15 +56,15 @@ repos:
5656 # MD033: no inline HTML
5757 # MD041: first line in a file should be a top-level heading
5858 # MD025: single title
59- args : [ --disable, MD013, MD024, MD025, MD033, MD041, "--" ]
59+ args : [--disable, MD013, MD024, MD025, MD033, MD041, "--"]
6060
6161 - repo : https://github.com/kynan/nbstripout
6262 rev : 0.7.1
6363 hooks :
6464 - id : nbstripout
65- args : [ --drop-empty-cells, --keep-output ]
65+ args : [--drop-empty-cells, --keep-output]
6666
6767 - repo : https://github.com/RobertCraigie/pyright-python
68- rev : v1.1.373
68+ rev : v1.1.374
6969 hooks :
7070 - id : pyright
0 commit comments