Skip to content

Commit bbddcc7

Browse files
committed
enhancement: add lint-next target to prepare for ruff-by-default configuration
1 parent 1a8a832 commit bbddcc7

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

tox.ini

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ python =
2020
3.10: py310
2121
3.11: py311
2222
3.12: py312
23-
3.13: py313, type-check, lint, plugins, min
23+
3.13: py313, type-check, lint, lint-next, plugins, min
2424

2525
[flake8]
2626
exclude = .git,.tox,dist,*egg,setup.py
@@ -44,6 +44,13 @@ commands =
4444
- ruff check src
4545
- ruff check src --statistics
4646

47+
[testenv:lint-next]
48+
deps =
49+
-r {toxinidir}/tests/requirements.d/lint.txt
50+
commands =
51+
ruff check src --output-format pylint
52+
ruff check src --statistics
53+
4754
[testenv:type-check]
4855
deps =
4956
-r {toxinidir}/tests/requirements.d/type-check.txt

0 commit comments

Comments
 (0)