Unfortunately this causes Fun with API and util libs where pylint complains functions are unused =)
12 lines
261 B
INI
12 lines
261 B
INI
[tool.pylint.main]
|
|
fail-under = 10
|
|
ignore = ["CVS", ".git", ".hg", ".svn"]
|
|
ignore-patterns = ["^\\.#"]
|
|
suggestion-mode = true
|
|
|
|
[tool.pylint.basic]
|
|
bad-names = ["foo", "bar", "baz", "this", "thing"]
|
|
good-names = ["_"]
|
|
|
|
[tool.pylint.format]
|
|
max-line-length = 120
|