ruff: Update configuration

This commit is contained in:
Sanchayan Maity 2024-08-24 17:25:42 +05:30
parent 86b187c64a
commit 96507c4464
Signed by: sanchayanmaity
GPG key ID: 6F6A0609C12038F3
2 changed files with 9 additions and 6 deletions

View file

@ -1,6 +0,0 @@
[tool.ruff]
select = ["E", "F", "I", "W", "Q"]
# Never enforce `E501` (line length violations).
ignore = ["E501"]

View file

@ -0,0 +1,9 @@
[lint]
ignore = ["E402", "E501"]
select = [
"E", # pycodestyle
"W", # pycodestyle
"F", # Pyflakes
"I", # isort
"Q", # flake8-quotes
]