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
|
||||
|
||||
[tool.pylint.format]
|
||||
indent-string = '\t'
|
||||
max-line-length = 160
|
||||
|
||||
[tool.pylint."messages control"]
|
||||
|
|
@ -156,7 +157,6 @@ disable = [
|
|||
"C",
|
||||
"R",
|
||||
"attribute-defined-outside-init",
|
||||
"bad-indentation",
|
||||
"bare-except",
|
||||
"broad-exception-caught",
|
||||
"cell-var-from-loop",
|
||||
|
|
|
|||
Loading…
Reference in New Issue