From 11a1c54a98a6fcfe427ca2c9b69ba8eb92a413d4 Mon Sep 17 00:00:00 2001 From: Ali Kamal <60692635+stryker13799@users.noreply.github.com> Date: Thu, 23 Feb 2023 22:59:22 +0500 Subject: [PATCH] Create pylint.cfg --- pylint.cfg | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pylint.cfg diff --git a/pylint.cfg b/pylint.cfg new file mode 100644 index 0000000..219eed3 --- /dev/null +++ b/pylint.cfg @@ -0,0 +1,7 @@ +[MASTER] +# Specify the maximum allowed line length +max-line-length = 120 + +[MESSAGES CONTROL] +# Disable certain pylint messages +disable = C0114,C0115,C0116,R0903