-
Notifications
You must be signed in to change notification settings - Fork 18
/
.pylintrc
30 lines (24 loc) · 1.48 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
[MASTER]
# A comma-separated list of package or module names from where C/C++ extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=numpy,scipy,networkx,mpi4py.MPI,flamingpy.cpp
# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=run_error_correction.py,run_graph_states.py
[TYPECHECK]
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis. It
# supports qualified module names, as well as Unix pattern matching.
ignored-modules=numpy,scipy,networkx,rustworkx
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set). This supports can work
# with qualified names.
ignored-classes=numpy,scipy,networkx,flamingpy.codes
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
disable=invalid-name,consider-using-f-string,too-many-branches,no-member,redefined-outer-name,too-many-arguments,too-many-locals,too-few-public-methods,no-self-use,use-dict-literal, broad-exception-raised