From f5283dd63fc40211a935330973a69aa8105aa920 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 2 Sep 2022 14:43:12 -0700 Subject: pylint: enable global-statement This does force a number of uses of `# pylint: disable` comments, but it also finds a couple of useless global uses and one place (in the previous commit) that an easy refactor removes the use of global. Global is a code smell, so forcing adding a comment to disable helps force developers to really consider if what they're doing is a good idea. --- .pylintrc | 1 - 1 file changed, 1 deletion(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index f62775b..af598d3 100644 --- a/.pylintrc +++ b/.pylintrc @@ -23,7 +23,6 @@ disable= duplicate-value, exec-used, fixme, - global-statement, implicit-str-concat, import-error, import-outside-toplevel, -- cgit v1.1