-
Notifications
You must be signed in to change notification settings - Fork 7
/
pylintrc
72 lines (50 loc) · 1.89 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
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
[MAIN]
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use, and will cap the count on Windows to
# avoid hangs.
jobs=0
# Minimum Python version to use for version dependent checks. Will default to
# the version used to run pylint.
py-version=3.10
# Discover python modules and packages in the file system subtree.
recursive=yes
# Add custom pylint plugins
load-plugins=pylint_plugins.duplicate_code
[MESSAGES CONTROL]
# Enable 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). See also the "--disable" option for examples.
enable=c-extension-no-member
disable=too-few-public-methods
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
notes=FIXME
[BASIC]
# Naming style matching correct argument names.
argument-naming-style=any
# Naming style matching correct attribute names.
attr-naming-style=any
# Naming style matching correct variable names.
variable-naming-style=any
# Naming style matching correct module level constants names.
const-naming-style=any
# Naming style matching correct method names.
method-naming-style=any
# Naming style matching correct function names.
function-naming-style=any
[STRING]
# This flag controls whether inconsistent-quotes generates a warning when the
# character used as a quote delimiter is used inconsistently within a module.
check-quote-consistency=yes
[TYPECHECK]
# Tells whether to warn about missing members when the owner of the attribute
# is inferred to be None.
ignore-none=false
[FORMAT]
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
expected-line-ending-format=LF
[DESIGN]
max-positional-arguments=8
max-args=20
max-attributes=20