forked from inducer/arraycontext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (31 loc) · 773 Bytes
/
setup.cfg
File metadata and controls
40 lines (31 loc) · 773 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
37
38
39
40
[flake8]
min_python_version = 3.6
ignore = E126,E127,E128,E123,E226,E241,E242,E265,W503,E402
max-line-length=85
inline-quotes = "
docstring-quotes = """
multiline-quotes = """
# enable-flake8-bugbear
[isort]
known_firstparty=pytools,pyopencl,pymbolic,islpy,loopy,pytato
known_local_folder=arraycontext
line_length = 85
lines_after_imports = 2
combine_as_imports = True
multi_line_output = 4
[mypy]
# it reads pytato code, and pytato is 3.8+
python_version = 3.8
warn_unused_ignores = True
[mypy-islpy]
ignore_missing_imports = True
[mypy-loopy.*]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-meshmode.*]
ignore_missing_imports = True
[mypy-pymbolic.*]
ignore_missing_imports = True
[mypy-pyopencl.*]
ignore_missing_imports = True