feat(LSP): Bump configuration for Ruff

With latest Ruff version, some of the settings in the configuration
files were relocated.  This patch corrects those category names.
This commit is contained in:
Dionisio E Alonso 2024-02-23 17:42:29 -03:00
parent a1dbef0b64
commit 4dfdba8ac7
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
line-length = 79
[lint]
extend-select = [
"E", "W", "F", "C90", # Pycodestyle + Pyflakes + McCabe = Flake8
"PL", # Pylint

View File

@ -1,10 +1,11 @@
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = [
"E", "W", "F", "C90", # Pycodestyle + Pyflakes + McCabe = Flake8
"PL", # Pylint
]
[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.flake8]