From e071ec89526367c5e8a67e0798c8fe89e119331e Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Sep 2023 12:24:59 -0400 Subject: [PATCH] fix(actions): added pylintrc rules --- .pylintrc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..9086141 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,10 @@ + [MESSAGES CONTROL] + disable= + missing-module-docstring, + missing-function-docstring, + missing-class-docstring, + line-too-long, + too-many-arguments, + too-many-branches, + superfluous-parens, + invalid-name