File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,23 @@ pre-commit:
88 script :
99 - pre-commit run --all-files --show-diff-on-failure
1010
11+ pylint :
12+ image : python:3.10
13+ before_script :
14+ - python -m pip install pylint-gitlab
15+ script :
16+ - >
17+ pylint
18+ --output-format=pylint_gitlab.GitlabCodeClimateReporter
19+ '**/*.py'
20+ > pylint.json
21+ artifacts :
22+ paths :
23+ - pylint.json
24+ reports :
25+ codequality : pylint.json
26+ when : always
27+
1128.build :
1229 image : python:3.10
1330 before_script :
Original file line number Diff line number Diff line change 66SUBTITLE = 'Bits of knowledge'
77TITLE = 'Sinoroc KB'
88
9+ foo = "bar"
10+
911#
1012# General
1113#
Original file line number Diff line number Diff line change 1+ #
2+
3+
4+ [MASTER]
5+
6+ load-plugins =
7+ pylint.extensions.bad_builtin,
8+ pylint.extensions.broad_try_clause,
9+ pylint.extensions.check_elif,
10+ pylint.extensions.docparams,
11+ pylint.extensions.docstyle,
12+ pylint.extensions.mccabe,
13+ pylint.extensions.overlapping_exceptions,
14+ pylint.extensions.redefined_variable_type,
15+
16+
17+ [MESSAGES CONTROL]
18+
19+ enable =
20+ use-symbolic-message-instead,
21+ useless-suppression,
22+
23+
24+ # EOF
You can’t perform that action at this time.
0 commit comments