forked from HEPCloud/decisionengine_modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
28 lines (28 loc) · 759 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
# SPDX-FileCopyrightText: 2017 Fermi Research Alliance, LLC
# SPDX-License-Identifier: Apache-2.0
[flake8]
max-line-length = 120
# Do not test external dependencies
extend-exclude = ./glideinwms,./decisionengine,./build
# Errors and warnings to ignore
extend-ignore =
# line too long (90 > 79 characters)
E501,
# too many blank lines (2)
E303,
# expected 2 blank lines, found 1
E302,
# at least two spaces before inline comment
E261,
# block comment should start with '# '
E265,
# whitespace before ':'
E203,
# permit line breaks in binary operators
W503,
# permit line breaks in binary operators
W504
exclude: []
count: True
show-source: True
statistics: True