diff --git a/.pylintrc b/.pylintrc index 1f6b81c..ca0b539 100644 --- a/.pylintrc +++ b/.pylintrc @@ -5,6 +5,8 @@ # run arbitrary code. extension-pkg-whitelist= +fail-under=9 + # Add files or directories to the blacklist. They should be base names, not # paths. ignore=CVS @@ -28,7 +30,7 @@ limit-inference-results=100 # List of plugins (as comma separated values of python modules names) to load, # usually to register additional checkers. -load-plugins= +load-plugins=pylint_flask_sqlalchemy,pylint_flask # Pickle collected data for later comparisons. persistent=yes @@ -60,7 +62,7 @@ confidence= # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use "--disable=all --enable=classes # --disable=W". -disable=E0401,E0611,C0103,W0511,W0611 +disable=E0401,E0611,C0103,W0511,W0611,C0415 # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option