dotfiles/.pylintrc
Trysdyn Black d2d6af7240 Remove pylint complaint about unused globals
Unfortunately this causes Fun with API and util libs where pylint
complains functions are unused =)
2023-05-13 12:13:49 -07:00

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