We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 796a160 commit 49cc263Copy full SHA for 49cc263
pyproject.toml
@@ -149,7 +149,16 @@ addopts = "--strict-markers"
149
line-length = 88
150
151
[tool.ruff.lint]
152
-select = ["E", "F", "UP"]
+select = [
153
+ # pycodestyle
154
+ "E",
155
+ # Pyflakes
156
+ "F",
157
+ # pyupgrade
158
+ "UP",
159
+ # isort
160
+ "I",
161
+]
162
ignore = [
163
"E501",
164
"D1",
scripts/format
@@ -5,5 +5,7 @@ export PREFIX="poetry run python -m "
5
6
set -x
7
8
+# This is needed for running import sorting
9
+${PREFIX}ruff check --fix commitizen tests
10
${PREFIX}ruff format commitizen tests
11
${PREFIX}black commitizen tests
0 commit comments