From 69fd7853c8205be2ca31fb7f25ee2b77e59c2b58 Mon Sep 17 00:00:00 2001 From: jeffser Date: Sun, 4 Aug 2024 21:03:26 -0600 Subject: [PATCH] Added explanations --- .pylintrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index c1c7c4a..694cd1b 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,8 +1,14 @@ [MASTER] [MESSAGES CONTROL] -disable=undefined-variable, line-too-long, missing-function-docstring, consider-using-f-string +disable=undefined-variable, line-too-long, missing-function-docstring, consider-using-f-string, import-error [FORMAT] max-line-length=200 +# 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 \ No newline at end of file