diff --git a/pylint.sh b/pylint.sh index 6e354da..966e6cd 100755 --- a/pylint.sh +++ b/pylint.sh @@ -1,4 +1,4 @@ #!/bin/bash set -e -pylint -f parseable --rcfile tox.ini "$@" | tee pylint.out; test $PIPESTATUS -eq 0 +pylint -f parseable "$@" | tee pylint.out; test $PIPESTATUS -eq 0 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..8ae84dd --- /dev/null +++ b/setup.cfg @@ -0,0 +1,125 @@ +# +# pylint config +# + +[pylint.MASTER] +init-hook='import sys; sys.path.append("eo_gestion/vendor")' +persistent=yes +load-plugins=pylint_django + +[pylint.MESSAGES CONTROL] +disable= + abstract-method, + arguments-differ, + assignment-from-none, + attribute-defined-outside-init, + bad-super-call, + broad-except, + consider-using-dict-comprehension, + consider-using-set-comprehension, + cyclic-import, + duplicate-code, + exec-used, + fixme, + global-variable-undefined, + import-outside-toplevel, + inconsistent-return-statements, + invalid-name, + keyword-arg-before-vararg, + missing-class-docstring, + missing-function-docstring, + missing-module-docstring, + no-else-return, + no-member, + non-parent-init-called, + not-callable, + possibly-unused-variable, + protected-access, + raise-missing-from, + redefined-argument-from-local, + redefined-builtin, + redefined-outer-name, + signature-differs, + stop-iteration-return, + super-init-not-called, + superfluous-parens, + too-many-ancestors, + too-many-arguments, + too-many-branches, + too-many-instance-attributes, + too-many-lines, + too-many-locals, + too-many-nested-blocks, + too-many-return-statements, + too-many-statements, + undefined-loop-variable, + unnecessary-comprehension, + unspecified-encoding, + unsubscriptable-object, + unsupported-membership-test, + unused-argument, + use-a-generator, + c-extension-no-member, + consider-using-f-string + + +[pylint.REPORTS] +output-format=parseable + + +[pylint.BASIC] +no-docstring-rgx=__.*__|_.* +class-rgx=[A-Z_][a-zA-Z0-9_]+$ +function-rgx=[a-zA_][a-zA-Z0-9_]{2,70}$ +method-rgx=[a-z_][a-zA-Z0-9_]{2,70}$ +const-rgx=(([A-Z_][A-Z0-9_]*)|([a-z_][a-z0-9_]*)|(__.*__)|register|urlpatterns)$ +good-names=_,i,j,k,e,x,Run,,setUp,tearDown,r,p,s,v,fd + +[pylint.TYPECHECK] + +# Tells whether missing members accessed in mixin class should be ignored. A +# mixin class is detected if its name ends with "mixin" (case insensitive). +ignore-mixin-members=yes + +# List of classes names for which member attributes should not be checked +# (useful for classes with attributes dynamically set). +ignored-classes= + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E0201 when accessed. +generated-members=objects,DoesNotExist,id,pk,_meta,base_fields,context + +# List of method names used to declare (i.e. assign) instance attributes +defining-attr-methods=__init__,__new__,setUp + + +[pylint.VARIABLES] +init-import=no +dummy-variables-rgx=_|dummy +good-names=_,i,j,k,e,x,Run,,setUp,tearDown,r,p,s,v,fd + +[pylint.SIMILARITIES] +min-similarity-lines=6 +ignore-comments=yes +ignore-docstrings=yes + + +[pylint.MISCELLANEOUS] +notes=FIXME,XXX,TODO + + +[pylint.FORMAT] +max-line-length=160 +max-module-lines=2000 +indent-string=' ' + + +[pylint.DESIGN] +max-args=10 +max-locals=15 +max-returns=6 +max-statements=50 +max-parents=7 +max-attributes=7 +min-public-methods=0 +max-public-methods=50 diff --git a/tox.ini b/tox.ini index bd75a19..f7736aa 100644 --- a/tox.ini +++ b/tox.ini @@ -53,138 +53,3 @@ deps = pylint-django commands = ./pylint.sh eo_gestion/ tests/ - -# -# pylint config -# - -[MASTER] -init-hook='import sys; sys.path.append("eo_gestion/vendor")' -profile=no -persistent=yes -cache-size=500 -load-plugins=pylint_django - -[MESSAGES CONTROL] -disable= - abstract-method, - arguments-differ, - assignment-from-none, - attribute-defined-outside-init, - bad-super-call, - broad-except, - consider-using-dict-comprehension, - consider-using-set-comprehension, - cyclic-import, - duplicate-code, - exec-used, - fixme, - global-variable-undefined, - import-outside-toplevel, - inconsistent-return-statements, - invalid-name, - keyword-arg-before-vararg, - missing-class-docstring, - missing-function-docstring, - missing-module-docstring, - no-else-return, - no-member, - no-self-use, - non-parent-init-called, - not-callable, - possibly-unused-variable, - protected-access, - raise-missing-from, - redefined-argument-from-local, - redefined-builtin, - redefined-outer-name, - signature-differs, - stop-iteration-return, - super-init-not-called, - superfluous-parens, - too-many-ancestors, - too-many-arguments, - too-many-branches, - too-many-instance-attributes, - too-many-lines, - too-many-locals, - too-many-nested-blocks, - too-many-return-statements, - too-many-statements, - undefined-loop-variable, - unnecessary-comprehension, - unspecified-encoding, - unsubscriptable-object, - unsupported-membership-test, - unused-argument, - use-a-generator, - c-extension-no-member, - consider-using-f-string - - -[REPORTS] -output-format=parseable -include-ids=yes - - -[BASIC] -no-docstring-rgx=__.*__|_.* -class-rgx=[A-Z_][a-zA-Z0-9_]+$ -function-rgx=[a-zA_][a-zA-Z0-9_]{2,70}$ -method-rgx=[a-z_][a-zA-Z0-9_]{2,70}$ -const-rgx=(([A-Z_][A-Z0-9_]*)|([a-z_][a-z0-9_]*)|(__.*__)|register|urlpatterns)$ -good-names=_,i,j,k,e,x,Run,,setUp,tearDown,r,p,s,v,fd - -[TYPECHECK] - -# Tells whether missing members accessed in mixin class should be ignored. A -# mixin class is detected if its name ends with "mixin" (case insensitive). -ignore-mixin-members=yes - -# List of classes names for which member attributes should not be checked -# (useful for classes with attributes dynamically set). -ignored-classes= - -# When zope mode is activated, add a predefined set of Zope acquired attributes -# to generated-members. -zope=no - -# List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E0201 when accessed. -generated-members=objects,DoesNotExist,id,pk,_meta,base_fields,context - -# List of method names used to declare (i.e. assign) instance attributes -defining-attr-methods=__init__,__new__,setUp - - -[VARIABLES] -init-import=no -dummy-variables-rgx=_|dummy -good-names=_,i,j,k,e,x,Run,,setUp,tearDown,r,p,s,v,fd - -[SIMILARITIES] -min-similarity-lines=6 -ignore-comments=yes -ignore-docstrings=yes - - -[MISCELLANEOUS] -notes=FIXME,XXX,TODO - - -[FORMAT] -max-line-length=160 -max-module-lines=2000 -indent-string=' ' - - -[DESIGN] -max-args=10 -max-locals=15 -max-returns=6 -max-branchs=12 -max-statements=50 -max-parents=7 -max-attributes=7 -min-public-methods=0 -max-public-methods=50