-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
34 lines (32 loc) · 842 Bytes
/
setup.cfg
File metadata and controls
34 lines (32 loc) · 842 Bytes
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
[flake8]
max-line-length = 110
max-doc-length = 79
# E203: whitespace before :, flake8 disagrees with PEP-8
# E228: missing whitespace around bitwise or shift operator
# N802: function name should be lowercase
# N803: argument name should be lowercase
# N806: variable in function should be lowercase
# N812: lowercase imported as non lowercase
# N813: camel case imported as lowercase
# N815: mixed case imported as lowercase
# N816: mixed case variable in class scope
# W503: line break after binary operator, flake8 disagrees with PEP-8
ignore = E203,
E228,
N802,
N803,
N806,
N812,
N813,
N815,
N816,
W503
exclude =
bin,
doc,
**/*/__init__.py,
**/*/version.py,
tests/.tests,
config/*.py
python/lsst/summit/utils/resources/*/*.py
[tool:pytest]