Skip to content

Commit edc44f8

Browse files
committed
ruff: enable default lint checks besides I
1 parent 963ce0c commit edc44f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ envlist =
66
py311
77
py312
88
mypy
9-
fmt-check
9+
lint
1010
skip_missing_interpreters = True
1111
isolated_build = True
1212

@@ -32,16 +32,16 @@ commands=
3232
[testenv:fmt]
3333
skip_install = true
3434
deps =
35-
ruff==0.3.4
35+
ruff~=0.3.4
3636
commands =
3737
ruff check --select I --fix .
3838
ruff format .
3939

40-
[testenv:fmt-check]
40+
[testenv:lint]
4141
skip_install = true
4242
deps = {[testenv:fmt]deps}
4343
commands =
44-
ruff check --select I .
44+
ruff check --extend-select I .
4545
ruff format --check .
4646

4747
[gh]
@@ -50,4 +50,4 @@ python =
5050
3.9 = py39, mypy
5151
3.10 = py310, mypy
5252
3.11 = py311, mypy
53-
3.12 = py312, mypy, fmt-check
53+
3.12 = py312, mypy, lint

0 commit comments

Comments
 (0)