We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 884cae9 commit 10841c6Copy full SHA for 10841c6
2 files changed
docs/CONTRIBUTING.rst
@@ -76,4 +76,4 @@ The linter in CI/CD will check that new TUF code is formatted with
76
command line:
77
::
78
79
- $ ruff format .
+ $ tox -e fix
tox.ini
@@ -53,6 +53,13 @@ commands =
53
54
mypy {[testenv:lint]lint_dirs}
55
56
+[testenv:fix]
57
+changedir = {toxinidir}
58
+deps = {[testenv:lint]deps}
59
+commands =
60
+ ruff check --fix {[testenv:lint]lint_dirs}
61
+ ruff format {[testenv:lint]lint_dirs}
62
+
63
[testenv:docs]
64
deps =
65
-r{toxinidir}/requirements/docs.txt
0 commit comments