Skip to content

Commit

Permalink
disable linter's error E1111 as it is buggy
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-wisiol committed Jan 25, 2019
1 parent 356132e commit 79192cb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,17 @@ method-rgx=(([a-z][a-z0-9_]{2,37})|(_[a-z0-9_]*))$

# Maximum number of characters on a single line.
max-line-length=120

[MESSAGES CONTROL]

# 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
# multiple time.
#enable=

# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
# E1111 is buggy for certain numpy functions, see github.com/PyCQA/pylint/issues/2435
disable=E1111

0 comments on commit 79192cb

Please sign in to comment.