From 856d6882de7609a67cafc327e02230a13e028149 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Mon, 26 Feb 2018 19:15:31 +0000 Subject: [PATCH] Ignore the pydevd files when linting. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 30e0d25f..7acfcd6a 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ depends: .PHONY: lint lint: - $(PYTHON) -m flake8 --ignore E24,E121,E123,E125,E126,E221,E226,E266,E704,E265 $(CURDIR) + $(PYTHON) -m flake8 --ignore E24,E121,E123,E125,E126,E221,E226,E266,E704,E265 --exclude ptvsd/pydevd $(CURDIR) .PHONY: test test: ## Run the test suite.