-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.flake8
More file actions
36 lines (36 loc) · 934 Bytes
/
.flake8
File metadata and controls
36 lines (36 loc) · 934 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
35
36
[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
# !r conversion flag
B907
# strict zip
B905
# up to 88 allowed by bugbear B950
max-line-length = 80
per-file-ignores =
# <file>: <comma-separated-error-codes>
src/incydr/__init__.py: F401
src/incydr/enums/__init__.py: F401
src/_client/core/enums.py: F401
src/_client/core/settings.py: B902
src/_cli/cmds/models.py: B902
src/_client/queries/_file_events/enums.py: B902
src/_cli/*: B008
src/_client/core/enums.py: F401
src/_client/utils.py: B905
src/_cli/rich_utils.py: B905