From 3b292a04b8797bb75f1f597dadb17d8342f9fb11 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 22 Sep 2020 09:38:44 -0700 Subject: pylint: turn on warnings for abstract classes We're using these now, so having some error checking to make sure we don't have paths were we're trying to instantiate an abstract class would be good. --- .pylintrc | 1 + 1 file changed, 1 insertion(+) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 560968e..e9908ba 100644 --- a/.pylintrc +++ b/.pylintrc @@ -7,6 +7,7 @@ score=no [MESSAGES CONTROL] disable=all enable= + abstract-class-instantiated, assert-on-tuple, compare-to-zero, dangerous-default-value, -- cgit v1.1