-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.flake8
41 lines (38 loc) · 1013 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
35
36
37
38
39
40
41
# -*- conf -*-
# flake8 settings for Ramble core files.
#
# These exceptions are for Ramble core files. We're slightly more lenient
# with objects (applications, modifiers, etc.). See .flake8_objects for that.
#
# E2: Whitespace
# - E203: space before ':' (one common false positive is string slice)
#
# W5: Line break warning
# - W503: line break before binary operator
# - W504: line break after binary operator
#
[flake8]
ignore = E203,W503,W504
max-line-length = 99
# exclude things we usually do not want linting for.
# These still get linted when passed explicitly, as when spack flake8 passes
# them on the command line.
exclude =
.git
etc/
opt/
share/
lib/ramble/external
lib/ramble/spack
lib/ramble/llnl
__pycache__
var
docs/tutorial/examples
format = ramble
[flake8:local-plugins]
report =
# TODO :I'm guessing we'd rather this is renamed to Ramble?
# .. It's tempting to keep it as Spack unless it diverges
ramble = flake8_formatter:SpackFormatter
paths =
./share/ramble/qa/