| Age | Commit message (Collapse) | Author |
|
As of now, pylint checks return a metric ton of warnings, which tells us
that it hasn't been running lately. pylint is replaced by flake8 and its
continuous run will enventually be ensured by a CI running tox on this
project. The immediate goal, for now, is to have an easy command that
checks as much as possible, but that *passes* so that we don't litter
the project with more code that decrease quality.
|
|
The previous version of pylintrc defined MASTER.ignore twice, which is
illegal in Python 3:
$ pylint --rcfile=pylintrc pym/gentoolkit/helpers.py
Traceback (most recent call last):
...
configparser.DuplicateOptionError: While reading from pylintrc [line 24]:
option 'ignore' in section 'MASTER' already exists
I kept other option values unchanged from the old pylintrc, and added
"# was ..." comments for each non-default value.
|
|
svn path=/trunk/gentoolkit/; revision=712
|
|
svn path=/trunk/gentoolkit/; revision=703
|