ruff: Update configuration
This commit is contained in:
parent
86b187c64a
commit
96507c4464
2 changed files with 9 additions and 6 deletions
|
@ -1,6 +0,0 @@
|
|||
[tool.ruff]
|
||||
|
||||
select = ["E", "F", "I", "W", "Q"]
|
||||
|
||||
# Never enforce `E501` (line length violations).
|
||||
ignore = ["E501"]
|
9
ruff/.config/ruff/ruff.toml
Normal file
9
ruff/.config/ruff/ruff.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
[lint]
|
||||
ignore = ["E402", "E501"]
|
||||
select = [
|
||||
"E", # pycodestyle
|
||||
"W", # pycodestyle
|
||||
"F", # Pyflakes
|
||||
"I", # isort
|
||||
"Q", # flake8-quotes
|
||||
]
|
Loading…
Reference in a new issue