feat(LSP): Correct Pylint's configuration indentation

Unify Pylint's config indentation like any other TOML file in this repo.
This commit is contained in:
Dionisio E Alonso 2024-02-23 17:51:36 -03:00
parent 4dfdba8ac7
commit 11a1962f09
1 changed files with 11 additions and 11 deletions

View File

@ -4,16 +4,16 @@
max-line-length = 79
[tool.pylint."messages control"]
disable = [
# Covered in flake8 according to https://pylint.rtfd.io/en/latest/faq.html#which-messages-should-i-disable-to-avoid-duplicates-if-i-use-other-popular-linters
"unnecessary-semicolon", "bad-indentation", "bare-except", # pycodestyle
"unnecessary-negation", "singleton-comparison", "line-too-long", # pycodestyle
"trailing-whitespace", "missing-final-newline", "trailing-newlines", # pycodestyle
"multiple-statements", "wrong-import-position", # pycodestyle
"undefined-variable", "unused-import", "unused-variable", # pyflakes
"too-many-branches", # mccabe
# Covered in flake8 according to https://pylint.rtfd.io/en/latest/faq.html#which-messages-should-i-disable-to-avoid-duplicates-if-i-use-other-popular-linters
"unnecessary-semicolon", "bad-indentation", "bare-except", # pycodestyle
"unnecessary-negation", "singleton-comparison", "line-too-long", # pycodestyle
"trailing-whitespace", "missing-final-newline", "trailing-newlines", # pycodestyle
"multiple-statements", "wrong-import-position", # pycodestyle
"undefined-variable", "unused-import", "unused-variable", # pyflakes
"too-many-branches", # mccabe
# other stuff
# Unfold "missing-docstring" (https://pylint.rtfd.io/en/latest/user_guide/messages/convention/missing-docstring.html)
"missing-module-docstring", "missing-class-docstring", "missing-function-docstring",
#"invalid-name", "redefined-outer-name", "logging-format-interpolation",
# other stuff
# Unfold "missing-docstring" (https://pylint.rtfd.io/en/latest/user_guide/messages/convention/missing-docstring.html)
"missing-module-docstring", "missing-class-docstring", "missing-function-docstring",
#"invalid-name", "redefined-outer-name", "logging-format-interpolation",
]