From 94485f9e4f86df143801c1810a58df993b2b79b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Fri, 5 Oct 2018 17:29:21 +0200 Subject: [PATCH] skip .git files from linting with flake8 (#2506) --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 3e3f63eb1..718f69ecd 100644 --- a/.flake8 +++ b/.flake8 @@ -20,4 +20,4 @@ ignore = F401, F403, F405, F811, E127, E128, E301, E302, E305, E501, E701, E704, # A nice future improvement would be to provide separate .flake8 # configurations for Python 2 and Python 3 files. builtins = StandardError,apply,basestring,buffer,cmp,coerce,execfile,file,intern,long,raw_input,reduce,reload,unichr,unicode,xrange -exclude = .venv*,@* +exclude = .venv*,@*,.git