From e8bdac908d490f49a0bd15ff84baf3258cd0ce54 Mon Sep 17 00:00:00 2001 From: Andreas Mueller Date: Wed, 31 Oct 2012 15:34:22 +0000 Subject: [PATCH] enh: add code analysis target to makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) 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