forked from jodal/pyspotify
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[MESSAGES CONTROL] | ||
# | ||
# Disabled messages | ||
# ----------------- | ||
# | ||
# C0103 - Invalid name "%s" (should match %s) | ||
# C0111 - Missing docstring | ||
# E0102 - %s already defined line %s | ||
# Does not understand @property getters and setters | ||
# E0202 - An attribute inherited from %s hide this method | ||
# Does not understand @property getters and setters | ||
# E1101 - %s %r has no %r member | ||
# Does not understand @property getters and setters | ||
# R0201 - Method could be a function | ||
# R0801 - Similar lines in %s files | ||
# R0903 - Too few public methods (%s/%s) | ||
# R0904 - Too many public methods (%s/%s) | ||
# R0921 - Abstract class not referenced | ||
# W0141 - Used builtin function '%s' | ||
# W0142 - Used * or ** magic | ||
# W0613 - Unused argument %r | ||
# | ||
disable = C0103,C0111,E0102,E0202,E1101,R0201,R0801,R0903,R0904,R0921,W0141,W0142,W0613 |