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 10
10
- python-version : 3
11
11
env :
12
12
TOXENV : flake8
13
+ - python-version : 3
14
+ env :
15
+ TOXENV : pylint
13
16
- python-version : 3
14
17
env :
15
18
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 =
14
14
commands =
15
15
flake8 {posargs: cssselect setup.py tests docs/conf.py}
16
16
17
+ [testenv:pylint]
18
+ deps =
19
+ {[testenv]deps}
20
+ pylint ==2.8.3
21
+ commands =
22
+ pylint {posargs: cssselect setup.py tests docs}
23
+
17
24
[testenv:security]
18
25
deps =
19
26
bandit
You can’t perform that action at this time.
0 commit comments