File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1010 - python-version : 3
1111 env :
1212 TOXENV : flake8
13+ - python-version : 3
14+ env :
15+ TOXENV : pylint
1316 - python-version : 3
1417 env :
1518 TOXENV : security
Original file line number Diff line number Diff line change 1+ [MASTER]
2+ persistent =no
3+
4+ [MESSAGES CONTROL]
5+ disable =assignment-from-no-return,
6+ bad-continuation,
7+ bad-whitespace,
8+ c-extension-no-member,
9+ consider-using-in,
10+ fixme,
11+ inconsistent-return-statements,
12+ invalid-name,
13+ missing-class-docstring,
14+ missing-function-docstring,
15+ missing-module-docstring,
16+ multiple-imports,
17+ no-else-return,
18+ no-member,
19+ no-self-use,
20+ raise-missing-from,
21+ redefined-builtin,
22+ redefined-outer-name,
23+ too-few-public-methods,
24+ too-many-arguments,
25+ too-many-branches,
26+ too-many-function-args,
27+ too-many-lines,
28+ too-many-public-methods,
29+ too-many-statements,
30+ undefined-variable,
31+ unidiomatic-typecheck,
32+ unused-argument,
33+ unused-import,
34+ useless-object-inheritance # Required for Python 2 support
Original file line number Diff line number Diff line change @@ -14,6 +14,13 @@ deps =
1414commands =
1515 flake8 {posargs: cssselect setup.py tests docs/conf.py}
1616
17+ [testenv:pylint]
18+ deps =
19+ {[testenv]deps}
20+ pylint ==2.8.3
21+ commands =
22+ pylint {posargs: cssselect setup.py tests docs}
23+
1724[testenv:security]
1825deps =
1926 bandit
You can’t perform that action at this time.
0 commit comments