forked from inducer/pytato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (31 loc) · 773 Bytes
/
setup.cfg
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
42
43
44
45
[flake8]
ignore = E126,E127,E128,E123,E226,E241,E242,E265,N802,W503,E402,N814,N817,W504
max-line-length=85
inline-quotes = "
docstring-quotes = """
multiline-quotes = """
per-file-ignores =
examples/advection.py:B023
test/test_linalg.py:N806
# enable-flake8-bugbear
[mypy]
[mypy-pytato.transform]
disallow_subclassing_any = False
[mypy-pytato.scalar_expr]
disallow_subclassing_any = False
[mypy-islpy]
ignore_missing_imports = True
[mypy-loopy.*]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-pymbolic.*]
ignore_missing_imports = True
[mypy-pyopencl.*]
ignore_missing_imports = True
[mypy-jax.*]
ignore_missing_imports = True
[mypy-pygments.*]
ignore_missing_imports = True
[mypy-mako.*]
ignore_missing_imports = True