aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* catalyst: Fix and enable bad-continuation checksMatt Turner2020-04-151-2/+0
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* catalyst: Run autopep8Matt Turner2020-04-151-1/+1
| | | | | | | The only change I reverted was from the reformatting of the HASH_DEFINITIONS table in catalyst/hash_utils.py. Signed-off-by: Matt Turner <mattst88@gentoo.org>
* pylintrc: update for pylint-1.5Mike Frysinger2016-03-211-19/+20
|
* lint: fix redefined-outer-name warningsMike Frysinger2015-10-281-2/+1
| | | | | The doc module just needs a main func to hold all the variables instead of coding it all in global scope.
* lint: convert type/types to isinstanceMike Frysinger2015-10-281-2/+1
| | | | | pylint complains about using (type(...) == types.xxx) checks as it prefers isinstance(..., xxx) instead. Convert the code base to it.
* pylint: add a helper for linting codeMike Frysinger2015-10-061-0/+249
A bunch of warnings are left disabled because there's too many violations in the current code base. Hopefully we can get to a point where everyone uses this though and we can start enabling more and more. The code base is "clean" right now in the sense that running pylint will not produce any output. But we should start removing violations one by one and re-enable the warning class as we go.