-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
53 lines (49 loc) · 1002 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[flake8]
exclude =
__init__.py,
versioneer.py,
_version.py
ignore =
# Import formatting
E4,
# Space before :
E203,
# Comparing types instead of isinstance
E721,
# Assign a lambda
E731,
# Ambiguous variable names
E741,
# Allow breaks before/after binary operators
W503,
W504
max-line-length = 100
[pylint.MESSAGES_CONTROL]
# This controls the checks that pylint ignores.
#
# If you add to this list, please keep it in
# alphabetical order.
#
# to list all possibilities, run:
#
# pylint --list-msg
#
disable=
arguments-differ,
import-error,
invalid-name,
logging-fstring-interpolation,
no-else-raise,
no-else-return,
protected-access,
too-few-public-methods,
too-many-arguments,
too-many-locals,
wrong-import-order
[versioneer]
VCS = git
style = pep440
versionfile_source = dask_saturn/_version.py
versionfile_build = dask_saturn/_version.py
tag_prefix =
parentdir_prefix = dask_saturn-