Alpaca/.pylintrc

14 lines
660 B
INI
Raw Normal View History

2024-08-04 20:41:35 -06:00
[MASTER]
2024-08-04 20:51:56 -06:00
[MESSAGES CONTROL]
2024-08-04 21:03:26 -06:00
disable=undefined-variable, line-too-long, missing-function-docstring, consider-using-f-string, import-error
2024-08-04 20:54:59 -06:00
[FORMAT]
2024-08-04 20:59:47 -06:00
max-line-length=200
2024-08-04 20:54:59 -06:00
2024-08-04 21:03:26 -06:00
# Reasons for removing some checks:
# undefined-variable: _() is used by the translator on build time but it is not defined on the scripts
# line-too-long: I... I'm too lazy to make the lines shorter, maybe later
# missing-function-docstring I'm not adding a docstring to all the functions, most are self explanatory
# consider-using-f-string I can't use f-string because of the translator
# import-error The linter doesn't have access to all the libraries that the project itself does