diff --git a/Makefile b/Makefile index a647fa2c2211b..4075ed6f50fa5 100644 --- a/Makefile +++ b/Makefile @@ -58,3 +58,7 @@ doc: inplace doc-noplot: inplace make -C doc html-noplot + +code-analysis: + flake8 sklearn | grep -v __init__ | grep -v external + pylint -E -i y sklearn/ -d E1103,E0611,E1101