mirror of
https://github.com/beetbox/beets.git
synced 2026-01-07 16:34:45 +01:00
Ignore a new pep8-naming error
The new error <https://github.com/PyCQA/pep8-naming/pull/157> strikes me as a little overzealous: while most exceptions are errors, there are some Exception subclasses that are *not* properly considered errors (e.g., when they're only a base class for other error classes).
This commit is contained in:
parent
0f9ffeec3e
commit
8d3cfe46ed
1 changed files with 1 additions and 0 deletions
|
|
@ -26,6 +26,7 @@ ignore =
|
|||
FI50, # `__future__` import "division" present
|
||||
FI51, # `__future__` import "absolute_import" present
|
||||
FI53, # `__future__` import "print_function" present
|
||||
N818, # Exception subclasses should be named with an Error suffix
|
||||
per-file-ignores =
|
||||
./beet:D
|
||||
./docs/conf.py:D
|
||||
|
|
|
|||
Loading…
Reference in a new issue