-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pylintrc
40 lines (38 loc) · 1.25 KB
/
.pylintrc
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
[MASTER]
fail-on=E
fail-under=9.90
py-version=3.9.7
# As a temporary workaround for https://github.com/PyCQA/pylint/issues/4577
init-hook = "import astroid; astroid.context.InferenceContext.max_inferred = 250"
[MESSAGES CONTROL]
disable=arguments-differ,
fixme,
invalid-name,
unused-variable,
unused-argument,
too-many-arguments,
too-many-locals,
too-many-lines,
too-many-nested-blocks,
too-many-branches,
too-many-statements,
too-many-public-methods,
too-many-instance-attributes,
too-few-public-methods,
logging-fstring-interpolation,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
super-init-not-called,
unspecified-encoding
[TYPECHECK]
ignored-modules=matplotlib, matplotlib.cm
generated-members=ocsmesh.driver.JigsawDriver.hfun,
ocsmesh.driver.JigsawDriver.geom,
ocsmesh.driver.JigsawDriver.opts,
ocsmesh.hfun.hfun.Hfun.*,
ocsmesh.mesh.base.BaseMesh._msh_t,
ocsmesh.mesh.mesh.EuclideanMesh._boundaries,
ocsmesh.mesh.mesh.Mesh.*
ignore-patterns=interp.py,
cmd.py