aboutsummaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-09-22 09:38:44 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-09-22 17:57:03 -0700
commit3b292a04b8797bb75f1f597dadb17d8342f9fb11 (patch)
treedf7756beb8574a1b38b6ffd544c169351bbdef5c /.pylintrc
parentb034f8cf610d7c3d71fa536f2ec1669e7f2f3c7c (diff)
downloadmeson-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--.pylintrc1
1 files changed, 1 insertions, 0 deletions
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,