diff options
author | Florian Bruhin <git@the-compiler.org> | 2014-06-15 11:36:28 +0200 |
---|---|---|
committer | Florian Bruhin <git@the-compiler.org> | 2014-06-15 11:36:28 +0200 |
commit | 2b9f337758b5b47b584c74cde0b7d7897db9d5af (patch) | |
tree | 1ffba1ef843f59afa8a21623dc52762e2fd1de0b /.flake8 | |
parent | fa79212fea1b4a23d5fa14b406ca7c1311e83809 (diff) | |
download | qutebrowser-2b9f337758b5b47b584c74cde0b7d7897db9d5af.tar.gz qutebrowser-2b9f337758b5b47b584c74cde0b7d7897db9d5af.zip |
Fix lint
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -1,11 +1,11 @@ -[flake8]
-# E241: Multiple spaces after ,
-# E265: Block comment should start with '#'
-# checked by pylint:
-# F401: Unused import
-# E501: Line too long
-# F821: undefined name
-# F841: unused variable
-ignore=E241,E265,F401,E501,F821,F841
-max_complexity = 11
-exclude = ez_setup.py
+[flake8] +# E241: Multiple spaces after , +# E265: Block comment should start with '#' +# checked by pylint: +# F401: Unused import +# E501: Line too long +# F821: undefined name +# F841: unused variable +ignore=E241,E265,F401,E501,F821,F841 +max_complexity = 12 +exclude = ez_setup.py |