-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
43 lines (40 loc) · 1.1 KB
/
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
[metadata]
license_file = LICENSE.md
[bdist_wheel]
universal = 1
[tool:pytest]
testpaths = tests
filterwarnings =
error
[flake8]
# B = bugbear
# E = pycodestyle errors
# F = flake8 pyflakes
# W = pycodestyle warnings
# B9 = bugbear opinions,
# ISC = implicit str concat
select = B, E, F, W, B9, ISC
ignore =
# line length, handled by black
B950
E501
# bare except, handled by bugbear B001
E722
# binary operation line break, different opinion from black
W503
# exception chaining
B904
# allow manual quoting
B907
# up to 88 allowed by bugbear B950
max-line-length = 80
per-file-ignores =
# these export names
src/py42/sdk/queries/fileevents/filters/__init__.py: F401, F403
src/py42/sdk/queries/fileevents/v2/filters/__init__.py: F401, F403
src/py42/sdk/queries/fileevents/v2/__init__.py: F401, F403
src/py42/sdk/queries/fileevents/v1/__init__.py: F401, F403
src/py42/sdk/queries/fileevents/file_event_query.py: F401, F403
src/py42/sdk/queries/alerts/filters/__init__.py: F401, F403
src/py42/constants/__init__.py: F401
docs/conf.py: F401