Spaces:
Running
on
Zero
Running
on
Zero
File size: 417 Bytes
81d8e7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
[tool.black]
line-length = 120
[tool.pylint.master]
persistent = false
score = false
[tool.pylint.messages_control]
disable = "all"
enable = [
"miscellaneous",
"similarities",
]
[tool.pylint.similarities]
ignore-comments = true
ignore-docstrings = true
ignore-imports = true
min-similarity-lines = 8
[tool.pylint.reports]
reports = false
[tool.pylint.miscellaneous]
notes = [
"FIXME",
"XXX",
"TODO",
]
|