Skip to content
Snippets Groups Projects
Commit 1da0612c authored by Theodore Chang's avatar Theodore Chang
Browse files

Merge branch 'tlc/ignore-warning' into 'develop'

Ignore more warnings

See merge request !2454
parents ba04f115 b8a561a7
No related branches found
No related tags found
1 merge request!2454Ignore more warnings
Pipeline #258115 failed
......@@ -124,19 +124,21 @@ select = [
"W", # pycodestyle
]
ignore = [
"E402", # Module level import not at top of file
"E501", # Line too long ({width} > {limit} characters)
"E701", # Multiple statements on one line (colon)
"E731", # Do not assign a lambda expression, use a def
"E402", # Module level import not at top of file
"PLR0904", # too-many-public-methods
"PLR0911", # Too many return statements
"PLR0912", # Too many branches
"PLR0913", # Too many arguments in function definition
"PLR0915", # Too many statements
"PLR0917", # too-many-positional-arguments
"PLR1714", # consider-using-in
"PLR2004", # Magic value used instead of constant
"PLR5501", # else-if-used
"PLW0603", # Using the global statement
"PLW2901", # redefined-loop-name
"PLR1714", # consider-using-in
"PLR5501", # else-if-used
]
fixable = ["ALL"]
isort.split-on-trailing-comma = false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment