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.
lint.pycodestyle.max-line-length
1 parent 6fe184d commit 91d8c2eCopy full SHA for 91d8c2e
1 file changed
.ruff.toml
@@ -1,7 +1,16 @@
1
-lint.ignore = [
+[lint]
2
+select = [
3
+ "E", # enforce all pycodestyle error-level rules
4
+ "F", # enforce all Pyflakes rules (logic)
5
+ "W" # enforce all pycodestyle warning-level rules
6
+]
7
+ignore = [
8
"E401", # allow multiple imports on one line
9
"E402", # allow module level import at top of file
10
"E701", # allow multiple statements on one line (colon)
11
"E702", # allow multiple statements on one line (semicolon)
- "E722" # allow bare exceptions
12
+ "E722" # allow bare exceptions
13
]
14
+
15
+[lint.pycodestyle]
16
+max-line-length = 120
0 commit comments