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 19730da commit 9f8e2eeCopy full SHA for 9f8e2ee
pyproject.toml
@@ -56,6 +56,16 @@ include = '\.pyi?$'
56
#'''
57
58
[tool.ruff]
59
+src = ["."]
60
+exclude = [
61
+ ".git",
62
+ ".venv",
63
+]
64
+line-length = 120
65
+target-version = "py38"
66
+
67
68
+[tool.ruff.lint]
69
select = [
70
# See https://beta.ruff.rs/docs/rules/ for a full list
71
"E", # pycodestyle errors
@@ -79,14 +89,8 @@ select = [
79
89
"RUF", # Ruff-specific rules
80
90
"SIM", # flake8-simplify
81
91
]
82
-src = ["."]
83
92
ignore = []
84
-exclude = [
85
- ".git",
86
- ".venv",
87
-]
88
93
unfixable = []
-line-length = 120
-target-version = "py38"
94
95
96
[tool.ruff.per-file-ignores]
0 commit comments