diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2022-09-02 14:43:12 -0700 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2022-09-22 18:17:43 -0400 |
commit | f5283dd63fc40211a935330973a69aa8105aa920 (patch) | |
tree | c3ea862cb3d08ffcbe8ddaea9d70a42d6ee445de /.pylintrc | |
parent | 3ef332e89a7050d0c03801099a0649e00c187278 (diff) | |
download | meson-f5283dd63fc40211a935330973a69aa8105aa920.zip meson-f5283dd63fc40211a935330973a69aa8105aa920.tar.gz meson-f5283dd63fc40211a935330973a69aa8105aa920.tar.bz2 |
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.
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -23,7 +23,6 @@ disable= duplicate-value, exec-used, fixme, - global-statement, implicit-str-concat, import-error, import-outside-toplevel, |