Skip to content

Commit

Permalink
run_pylint: Ignore error I0011 on quiet runs
Browse files Browse the repository at this point in the history
For quiet runs, telling that we're ignoring some false
negatives is not really necessary.

Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
  • Loading branch information
lmr committed Mar 26, 2013
1 parent 818658a commit 02e45d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/run_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
sys.exit(1)

# Classes of errors we ignore on quiet runs
IGNORED_ERRORS = 'E1002,E1101,E1103,E1120,F0401'
IGNORED_ERRORS = 'E1002,E1101,E1103,E1120,F0401,I0011'
# By default, complain about all things
LINT_VERBOSE = True

Expand Down

0 comments on commit 02e45d4

Please sign in to comment.