summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-20 14:41:04 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-20 14:41:04 +0900
commit5f378fea5d770a5b3730c032d5adca8d5663350c (patch)
tree86dff1eb2089e86e11e3b61f1c021162dabd6555 /.pylintrc
parent2282af271bcf8e48c66785cd752c8bd848867fa2 (diff)
downloadbuildstream-5f378fea5d770a5b3730c032d5adca8d5663350c.tar.gz
.pylintrc: Enable attribute-defined-outside-init messages
This will give us an error if an instance attribute is ever declared outside of the constructor, which usually constitutes either a bug or a violation of the coding standard, rendering code more difficult to read.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc1
1 files changed, 0 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index eaf827fd6..c38309372 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -93,7 +93,6 @@ disable=#####################################
#######################################################
# Messages that we would like to enable at some point #
#######################################################
- attribute-defined-outside-init,
# Overriden methods don't actually override but redefine
arguments-differ,