diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-22 09:38:44 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-09-22 17:57:03 -0700 |
commit | 3b292a04b8797bb75f1f597dadb17d8342f9fb11 (patch) | |
tree | df7756beb8574a1b38b6ffd544c169351bbdef5c /.pylintrc | |
parent | b034f8cf610d7c3d71fa536f2ec1669e7f2f3c7c (diff) | |
download | meson-3b292a04b8797bb75f1f597dadb17d8342f9fb11.zip meson-3b292a04b8797bb75f1f597dadb17d8342f9fb11.tar.gz meson-3b292a04b8797bb75f1f597dadb17d8342f9fb11.tar.bz2 |
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.
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7,6 +7,7 @@ score=no [MESSAGES CONTROL] disable=all enable= + abstract-class-instantiated, assert-on-tuple, compare-to-zero, dangerous-default-value, |