forked from pycontribs/ansi2html
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable flake8 and pylint (pycontribs#119)
- Loading branch information
1 parent
01ca8a3
commit 6c816b3
Showing
6 changed files
with
73 additions
and
23 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
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,29 @@ | ||
[MESSAGES CONTROL] | ||
|
||
disable = | ||
# TODO(ssbarnea): remove temporary skips adding during initial adoption: | ||
attribute-defined-outside-init, | ||
consider-using-dict-comprehension, | ||
consider-using-enumerate, | ||
deprecated-module, | ||
import-error, | ||
invalid-name, | ||
line-too-long, | ||
missing-class-docstring, | ||
missing-function-docstring, | ||
missing-module-docstring, | ||
no-self-use, | ||
redefined-builtin, | ||
redefined-outer-name, | ||
too-few-public-methods, | ||
too-many-arguments, | ||
too-many-branches, | ||
too-many-instance-attributes, | ||
too-many-locals, | ||
too-many-public-methods, | ||
too-many-statements, | ||
unused-argument, | ||
unused-variable, | ||
|
||
[REPORTS] | ||
output-format = colorized |
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
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
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
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