File tree Expand file tree Collapse file tree 2 files changed +88
-0
lines changed
Expand file tree Collapse file tree 2 files changed +88
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Python package
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ strategy :
9+ max-parallel : 4
10+ matrix :
11+ python-version : [3.8]
12+ environment : [style, black, py38, py38-tls]
13+
14+ steps :
15+ - uses : actions/checkout@v1
16+ - name : Set up Python ${{ matrix.python-version }}
17+ uses : actions/setup-python@v2
18+ with :
19+ python-version : ${{ matrix.python-version }}
20+ - name : Install dependencies
21+ run : |
22+ python -m pip install --upgrade pip
23+ pip install tox
24+ - name : Test with tox
25+ run : tox -e ${{ matrix.environment }}
Original file line number Diff line number Diff line change 1+ [MASTER]
2+
3+ load-plugins =pylint_protobuf
4+
5+ [VARIABLES]
6+
7+ dummy-variables-rgx =^ignored_|^unused_|_
8+
9+ [DESIGN]
10+
11+ max-args =14
12+ max-parents =8
13+
14+ [FORMAT]
15+
16+ max-line-length =160
17+
18+ [MISCELLANEOUS]
19+
20+ notes =FIXME
21+
22+ [MESSAGES CONTROL]
23+
24+ disable =
25+ cyclic-import,
26+ duplicate-code,
27+ import-error,
28+ invalid-name,
29+ locally-disabled,
30+ locally-enabled,
31+ missing-docstring,
32+ misplaced-comparison-constant,
33+ no-init,
34+ no-name-in-module,
35+ protected-access,
36+
37+ too-few-public-methods,
38+ too-many-instance-attributes,
39+ too-many-lines,
40+ too-many-nested-blocks,
41+ too-many-locals,
42+ too-many-ancestors,
43+ too-many-return-statements,
44+ too-many-branches,
45+ too-many-statements,
46+ too-many-arguments,
47+ too-many-public-methods,
48+
49+ super-init-not-called,
50+ useless-else-on-loop,
51+ no-else-return,
52+ useless-object-inheritance,
53+ wrong-import-order,
54+ bad-continuation,
55+ invalid-overridden-method,
56+ consider-using-f-string,
57+ raise-missing-from,
58+
59+ broad-except,
60+ unnecessary-pass,
61+ unused-argument,
62+ super-with-arguments,
63+ abstract-method
You can’t perform that action at this time.
0 commit comments