From 86bfb0171ba46b365d3c18ee2b9d9394e4ff2e41 Mon Sep 17 00:00:00 2001 From: Ruben van Staveren Date: Sun, 15 Mar 2026 17:46:23 +0100 Subject: [PATCH] Fix pylint not finding the app from test --- .pylintrc | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..243a383 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,33 @@ +[MASTER] +init-hook="import os, sys; sys.path.append('app')" + +# Enable only error and fatal messages initially +disable=all +enable=E,F + +[FORMAT] +max-line-length=120 + +[BASIC] +# Good variable names which should always be accepted +good-names=i,j,k,ex,Run,_,id + +[TYPECHECK] +# Don't check for missing member access +ignore-mixin-members=yes + +[VARIABLES] +# Don't check for unused arguments in overridden methods +dummy-variables-rgx=_|dummy|^ignored_|^unused_ + +[DESIGN] +# Maximum number of arguments for function / method +max-args=10 + +[SIMILARITIES] +# Minimum lines number of a similarity +min-similarity-lines=4 + +[MISCELLANEOUS] +# List of note tags to take in consideration +notes=FIXME,XXX,TODO