forked from ansible/pytest-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
31 lines (24 loc) · 785 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[pep8]
ignore=E501
exclude=*.egg
[flake8]
max-line-length = 160
[REPORTS]
output-format=text
reports=no
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
[pylama]
format = pylint
skip = */.tox/*,*/.env/*
linters = mccabe,pep8,pyflakes,pydocstyle,pycodestyle
ignore = F0401,C0111,E731,D100,W0621,W0108,R0201,W0401,W0614,W0212,C901,R0914,I0011,D211,D102,D213
[pylama:pep8]
max_line_length = 120
[pylama:pylint]
max_line_length = 120
additional_builtins = config,self,item,skip
[pylama:mccabe]
max_complexity = 11
[pylama:pycodestyle]
max_line_length = 120
max-line-length = 120