From 7244c167255ff5c934dce964c93dce8ee9cb35f2 Mon Sep 17 00:00:00 2001 From: duker Date: Tue, 28 Aug 2018 16:36:18 +0300 Subject: [PATCH] #548 Rm E305 pycodestyle rule --- .coafile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.coafile b/.coafile index 2aa3a41f..47c09a69 100644 --- a/.coafile +++ b/.coafile @@ -13,7 +13,7 @@ minimum_tokens = 35 max_line_length = 100 # https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes # ignore W503 according to pep8 notes: https://goo.gl/rEjtY6 -pycodestyle_ignore = E305,W503 +pycodestyle_ignore = W503 pydocstyle_ignore = D100,D101,D102,D103,D104,D105,D106,D203,D212 language = Python 3