File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -151,18 +151,21 @@ dependencies = [
151151 " mypy-extensions==1.0.0" ,
152152 " ruff==0.4.8" ,
153153 " isort==5.13.2" ,
154+ " pyproject-fmt==2.2.1" ,
154155]
155156[tool .hatch .envs .linting .scripts ]
156157typing = " mypy --config-file=pyproject.toml {args:} ./src/ ./tests/ ./examples/"
157158style = [
158159 " ruff check {args:.} ./src/ ./tests/ ./examples/" ,
159160 " black --check --diff {args:} ./src/ ./tests/ ./examples/" ,
160161 " isort --check-only --profile black {args:} ./src/ ./tests/ ./examples/" ,
162+ " pyproject-fmt --check pyproject.toml" ,
161163]
162164fmt = [
163165 " black {args:} ./src/ ./tests/ ./examples/" ,
164166 " ruff check --fix {args:.} ./src/ ./tests/ ./examples/" ,
165167 " isort --profile black {args:} ./src/ ./tests/ ./examples/" ,
168+ " pyproject-fmt pyproject.toml" ,
166169 " style" ,
167170]
168171all = [
You can’t perform that action at this time.
0 commit comments