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 = [
151
151
" mypy-extensions==1.0.0" ,
152
152
" ruff==0.4.8" ,
153
153
" isort==5.13.2" ,
154
+ " pyproject-fmt==2.2.1" ,
154
155
]
155
156
[tool .hatch .envs .linting .scripts ]
156
157
typing = " mypy --config-file=pyproject.toml {args:} ./src/ ./tests/ ./examples/"
157
158
style = [
158
159
" ruff check {args:.} ./src/ ./tests/ ./examples/" ,
159
160
" black --check --diff {args:} ./src/ ./tests/ ./examples/" ,
160
161
" isort --check-only --profile black {args:} ./src/ ./tests/ ./examples/" ,
162
+ " pyproject-fmt --check pyproject.toml" ,
161
163
]
162
164
fmt = [
163
165
" black {args:} ./src/ ./tests/ ./examples/" ,
164
166
" ruff check --fix {args:.} ./src/ ./tests/ ./examples/" ,
165
167
" isort --profile black {args:} ./src/ ./tests/ ./examples/" ,
168
+ " pyproject-fmt pyproject.toml" ,
166
169
" style" ,
167
170
]
168
171
all = [
You can’t perform that action at this time.
0 commit comments