-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
31 lines (26 loc) · 933 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
# Project specific configuration used by the following tools:
# - nosetests
# - flake8
#
# nosetests only support setup.cfg. flake8 supports both setup.cfg and tox.ini. In
# In order to not have too many files around, we'll use setup.cfg for now.
[nosetests]
# Turn this back on if the logs to too spammy.
#nocapture=1
[flake8]
# The jenkins violations plugin can read the pylint format.
format=pylint
max-line-length = 80
# .svn,CVS,.bzr,.hg,.git,__pycache__:
# default excludes
# venv/:
# third party libraries are all stored in venv - so we don't want to
# check them for style issues.
# get-pip.py:
# a public file coming directly from upstream.
# salt/var/cache/:
# used by salt to cache all module files when run in non-root mode. This
# includes upstream modules that are not complient with coding style.
exclude=.svn,CVS,.bzr,.hg,.git,__pycache__,venv,get-pip.py,salt/var/cache/
[pep8]
max-line-length = 80