2023-01-27 09:47:59 +00:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
|
|
|
|
[tool.pylint.'MASTER']
|
|
|
|
py-version = "3.10"
|
|
|
|
init-hook='import sys; sys.path.append("./bin")'
|
|
|
|
|
|
|
|
[tool.pylint.'MESSAGES CONTROL']
|
|
|
|
disable = [
|
|
|
|
"raw-checker-failed",
|
|
|
|
"bad-inline-option",
|
|
|
|
"locally-disabled",
|
|
|
|
"file-ignored",
|
|
|
|
"suppressed-message",
|
|
|
|
"useless-suppression",
|
|
|
|
"deprecated-pragma",
|
|
|
|
"use-symbolic-message-instead",
|
|
|
|
"invalid-name",
|
|
|
|
"unspecified-encoding", # assume UTF-8
|
|
|
|
"line-too-long",
|
|
|
|
"too-many-nested-blocks",
|
|
|
|
"too-many-branches",
|
|
|
|
"duplicate-code",
|
|
|
|
"redefined-outer-name",
|
|
|
|
"fixme",
|
|
|
|
"wrong-import-position"
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.pylint.'FORMAT']
|
|
|
|
indent-after-paren = 4
|
|
|
|
indent-string = " "
|
2023-01-27 21:31:41 +00:00
|
|
|
expected-line-ending-format="LF"
|