Enable the bad-indentation pylint rule and fix space indentations (#2968)
This commit is contained in:
parent
1e6492d34a
commit
11f8490b59
|
|
@ -149,6 +149,7 @@ py-version = "3.12"
|
||||||
recursive = true
|
recursive = true
|
||||||
|
|
||||||
[tool.pylint.format]
|
[tool.pylint.format]
|
||||||
|
indent-string = '\t'
|
||||||
max-line-length = 160
|
max-line-length = 160
|
||||||
|
|
||||||
[tool.pylint."messages control"]
|
[tool.pylint."messages control"]
|
||||||
|
|
@ -156,7 +157,6 @@ disable = [
|
||||||
"C",
|
"C",
|
||||||
"R",
|
"R",
|
||||||
"attribute-defined-outside-init",
|
"attribute-defined-outside-init",
|
||||||
"bad-indentation",
|
|
||||||
"bare-except",
|
"bare-except",
|
||||||
"broad-exception-caught",
|
"broad-exception-caught",
|
||||||
"cell-var-from-loop",
|
"cell-var-from-loop",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue