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 3bb184b commit 250b6f2Copy full SHA for 250b6f2
pyproject.toml
@@ -4,14 +4,14 @@ exclude = [
4
".venv",
5
"**/migrations/**",
6
]
7
-ignore = [
+lint.ignore = [
8
"E501", # line too long
9
"F403", # 'from module import *' used; unable to detect undefined names
10
"E701", # multiple statements on one line (colon)
11
"F401", # module imported but unused
12
13
line-length = 119
14
-select = [
+lint.select = [
15
"I",
16
"E",
17
"F",
tox.ini
@@ -20,5 +20,5 @@ commands =
20
21
[testenv:ruff]
22
deps = ruff
23
-commands = ruff djangocms_file
+commands = ruff check djangocms_file
24
skip_install = true
0 commit comments