From 3d21e9b051ffc01beabc8667c7a40c6ad63673eb Mon Sep 17 00:00:00 2001 From: Pavel Minaev Date: Mon, 5 Mar 2018 18:07:18 -0800 Subject: [PATCH] Ignore E501 (line >80 columns) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f76841b9..98136208 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ depends: .PHONY: lint lint: - #$(PYTHON) -m flake8 --ignore E24,E121,E123,E125,E126,E221,E226,E266,E704,E265 --exclude ptvsd/pydevd $(CURDIR) + #$(PYTHON) -m flake8 --ignore E24,E121,E123,E125,E126,E221,E226,E266,E704,E265,E501 --exclude ptvsd/pydevd $(CURDIR) $(PYTHON) -m tests --lint-only .PHONY: test