forked from 21cmfast/21cmFAST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
38 lines (38 loc) · 749 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
[flake8]
ignore =
E203
E266
E501
W503
F403
F401
N803 # Naming upper/lowercase -- too hard right now.
N806 # Naming upper/lowercase -- too hard right now.
N802 # Naming upper/lowercase -- too hard right now.
D401 # Docstring in imperative mood. This should *not* be the case for @property's, but can't ignore them atm.
max-line-length = 88
max-complexity = 40
docstring-convention=numpy
inline-quotes="
ignore-decorators=click.option
per-file-ignores =
tests/*:D,T
devel/*:T
src/py21cmfast/cli.py:D,T
rst-roles =
class
func
mod
data
const
meth
attr
exc
obj
rst-directives =
note
warning
versionadded
versionchanged
deprecated
seealso