ruff: enable and fix C4 ruleset
This commit is contained in:
parent
c08ddbc781
commit
d244c7cc4e
19 changed files with 48 additions and 38 deletions
|
@ -1,3 +1,9 @@
|
|||
lint.extend-select = [
|
||||
"F", # flakes rules -- default, but extend just in case
|
||||
"E", # pycodestyle -- default, but extend just in case
|
||||
"C4", # flake8-comprehensions -- unnecessary list/map/dict calls
|
||||
]
|
||||
|
||||
lint.ignore = [
|
||||
### too opinionated style checks
|
||||
"E501", # too long lines
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue