diff --git a/.pylintrc b/.pylintrc index 44c4403..d1fb8f6 100644 --- a/.pylintrc +++ b/.pylintrc @@ -60,8 +60,8 @@ 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=C,R,W0613,W0511,W0212,W0201,W0311,W0106,W0603,W0621,W0703,W1201,W1203,E1136 +disable=C,E226,E302,E41,E402,E1136,R,S101,W0613,W0511,W0212,W0201,W0311,W0106,W0603,W0621,W0703,W1201,W1203,W1202,WPS102 # 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 diff --git a/tox.ini b/tox.ini index 436eaa0..ec92bff 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,6 @@ [flake8] -ignore = C819,E226,E302,E41,E402,S101,WPS102 +# These ignore line is copied from .pylintrc:64 - disable= +ignore = C,E226,E302,E41,E402,E1136,R,S101,W0613,W0511,W0212,W0201,W0311,W0106,W0603,W0621,W0703,W1201,W1203,W1202,WPS102 max-line-length = 200 exclude = tests/* max-complexity = 12