diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-20 14:41:04 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-20 14:41:04 +0900 |
commit | 5f378fea5d770a5b3730c032d5adca8d5663350c (patch) | |
tree | 86dff1eb2089e86e11e3b61f1c021162dabd6555 /.pylintrc | |
parent | 2282af271bcf8e48c66785cd752c8bd848867fa2 (diff) | |
download | buildstream-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-- | .pylintrc | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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, |