summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2016-02-19 07:09:13 +0100
committerFlorian Bruhin <git@the-compiler.org>2016-02-19 07:15:09 +0100
commit0b362e76eac75f9e35f6501d3fbaa13cfedd4b78 (patch)
tree3d0edc7e40b27481d6c15f1a879d60625499c2b1 /.pylintrc
parent67b99047726668cb3479914d9a8fb9ce68cc35f8 (diff)
downloadqutebrowser-0b362e76eac75f9e35f6501d3fbaa13cfedd4b78.tar.gz
qutebrowser-0b362e76eac75f9e35f6501d3fbaa13cfedd4b78.zip
Move pylint plugins to an installed package.
This means we can now run things like running pylint --version without having to set PYTHONPATH correctly now. When using skip_install=true, the plugins wouldn't work as they need to import qutebrowser. We have to keep setting PYTHONPATH in run_pylint_on_tests.py, otherwise we get this error I don't quite understand: F: 1, 0: error while code parsing: Unable to load file '/home/florian/proj/qutebrowser/git/__init__.py' ([Errno 2] No such file or directory: '...') (parse-error)
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/.pylintrc b/.pylintrc
index d70a59273..4c64f485e 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -3,10 +3,10 @@
[MASTER]
ignore=resources.py
extension-pkg-whitelist=PyQt5,sip
-load-plugins=pylint_checkers.config,
- pylint_checkers.modeline,
- pylint_checkers.openencoding,
- pylint_checkers.settrace
+load-plugins=qute_pylint.config,
+ qute_pylint.modeline,
+ qute_pylint.openencoding,
+ qute_pylint.settrace
[MESSAGES CONTROL]
enable=all