-
Notifications
You must be signed in to change notification settings - Fork 10
/
.flake8
34 lines (26 loc) · 802 Bytes
/
.flake8
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
#
# Author: Hari Sekhon
# Date: Mon Oct 21 15:57:10 2019 +0100
#
# vim:ts=4:sts=4:sw=4:et
#
# https///github.com/HariSekhon/pylib
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
# ============================================================================ #
# F l a k e 8 C o n f i g
# ============================================================================ #
# https://flake8.pycqa.org/en/latest/user/configuration.html
[flake8]
statistics = True
max-line-length = 120
ignore = E265,
E402,
F401
exclude = test*/*
max-complexity = 10