diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-20 22:54:17 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-04-01 10:54:31 +0000 |
commit | 438ed34c132c5da29495b92f5589ce8c816cccc3 (patch) | |
tree | 347ecfba22106f0d5d8855a431a8d47f5b26e89b /.pylintrc | |
parent | b8cb5832a83d297a6c2feda771ac04cf4fe83874 (diff) | |
download | buildstream-438ed34c132c5da29495b92f5589ce8c816cccc3.tar.gz |
lint: Fix or silence 'cyclic-import' errors and enable pylint for it
Cyclic imports can be confusing because the order in which we import
dependencies can make the import fail or not. We should not rely on
ordering of imports for our code. This fixes everywhere possible the
imports and silence explicitely some which are not convenient or would
require big refactors
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -105,11 +105,6 @@ disable=##################################### unused-argument, - ########################################################### - # Messages that report warnings which should be addressed # - ########################################################### - - cyclic-import, # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option |