35 lines
748 B
TOML
35 lines
748 B
TOML
[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 = " "
|
|
expected-line-ending-format="LF"
|
|
|
|
[tool.ruff]
|
|
line-length = 115
|
|
# Module level import not at top of file (`E402`).
|
|
ignore = ["E402"]
|