There was an error while loading. Please reload this page.
2 parents c022cb8 + 55ba534 commit 324b06fCopy full SHA for 324b06f
1 file changed
ruff.toml
@@ -33,14 +33,14 @@ extend-select = [
33
'W', # pycodestyle
34
]
35
ignore = [
36
- 'E501', # line-too-long
37
- 'PLR0911', # too-many-return-statments
38
- 'PLR0912', # too-many-branches
39
- 'PLR0913', # too-many-arguments
40
- 'PLR0915', # too-many-statements
41
- 'PLR2004', # magic-value-comparison
42
- 'S404', # suspicious-subprocess-import
43
- 'S603', # subprocess-without-shell-equals-true
44
- 'S607', # start-process-with-partial-path
+ 'line-too-long',
+ 'magic-value-comparison',
+ 'start-process-with-partial-path',
+ 'subprocess-without-shell-equals-true',
+ 'suspicious-subprocess-import',
+ 'too-many-arguments',
+ 'too-many-branches',
+ 'too-many-return-statements',
+ 'too-many-statements',
45
46
preview = true
0 commit comments