forked from inducer/meshmode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
98 lines (70 loc) · 1.74 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[flake8]
ignore = E126,E127,E128,E123,E226,E241,E242,E265,W503,E402
max-line-length=85
exclude=meshmode/mesh/refinement/__init__.py
inline-quotes = "
docstring-quotes = """
multiline-quotes = """
# enable-flake8-bugbear
# enable-flake8-isort
#
[isort]
known_firstparty=pytools,pyopencl,loopy,arraycontext,gmsh_interop,pyvisfile,modepy,pytato,pymbolic,pymetis,firedrake
known_local_folder=meshmode
line_length = 85
lines_after_imports = 2
combine_as_imports = True
multi_line_output = 4
[mypy]
python_version = 3.8
warn_unused_ignores = True
[mypy-meshmode.discretization.*]
ignore_errors = True
[mypy-meshmode.mesh]
ignore_errors = True
[mypy-meshmode.mesh.generation]
ignore_errors = True
[mypy-meshmode.mesh.visualization]
ignore_errors = True
[mypy-meshmode.mesh.refinement.*]
ignore_errors = True
[mypy-meshmode.interop.*]
ignore_errors = True
[mypy-meshmode.dof_array]
ignore_errors = True
[mypy-pyvisfile.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-mpl_toolkits.*]
ignore_missing_imports = True
[mypy-firedrake.*]
ignore_missing_imports = True
[mypy-pyop2.*]
ignore_missing_imports = True
[mypy-finat.*]
ignore_missing_imports = True
[mypy-FIAT.*]
ignore_missing_imports = True
[mypy-loopy.*]
ignore_missing_imports = True
[mypy-gmsh_interop.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-pymetis.*]
ignore_missing_imports = True
[mypy-pymbolic.*]
ignore_missing_imports = True
[mypy-recursivenodes.*]
ignore_missing_imports = True
[mypy-mayavi.*]
ignore_missing_imports = True
[mypy-h5py.*]
ignore_missing_imports = True
[mypy-oct2py.*]
ignore_missing_imports = True
[mypy-pyopencl.*]
ignore_missing_imports = True
[mypy-pytential.*]
ignore_missing_imports = True