mirror of
https://github.com/Zenithsiz/arc-proj.git
synced 2026-02-03 05:57:05 +00:00
15 lines
311 B
INI
15 lines
311 B
INI
[FORMAT]
|
|
indent-string='\t'
|
|
max-line-length=150
|
|
|
|
# `f`: Callbacks
|
|
# `it`: Iterators
|
|
good-names=f,it
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
# W0621: Due to variables defined in `if __name__ == "__main__"`.
|
|
# W0511: This shouldn't be a warning
|
|
# C0201: It's clearer only the keys exist by using `.keys()`
|
|
disable=W0621,W0511,C0201
|