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 a7559de commit ea949cbCopy full SHA for ea949cb
ruff.toml
@@ -32,22 +32,22 @@ exclude = [
32
line-length = 120
33
indent-width = 4
34
35
-# Assume Python 3.10
36
-target-version = "py310"
+# Assume Python 3.11
+target-version = "py311"
37
38
[lint]
39
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
40
select = [
41
- # "E",
42
- # "F",
+ # "E", # pycodestyle
+ # "F", # pyglake
43
# "I", # Isort
44
# "PERF", # Perlint
45
# "PL", # Pylint
46
- # "RUF",
+ # "RUF", # Ruff
47
# "S", # Bandit
48
- # "SIM",
49
- # "UP",
50
- # "W",
+ # "SIM", # Simplify
+ # "UP", # Upgrade
+ # "W", # Warning
51
]
52
ignore = []
53
0 commit comments