From 92a11819b44a581e27da7569a7b7ee55025bc2e3 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Sun, 14 Feb 2016 18:23:58 +0000 Subject: [PATCH] Exclude venv directories from linting Exclude venv/ (a common virtualenv name) and bin/,lib/ if the local directory is configured as a venv. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 3a41bcfdbee..93b0187a015 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ universal = 1 testpaths = tests [flake8] -exclude = .venv,.git,.tox,docs,www_static,tests +exclude = .venv,.git,.tox,docs,www_static,tests,venv,bin,lib [pep257] ignore = D203,D105