forked from verilator/rtlmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpylintrc.toml
More file actions
46 lines (39 loc) · 1.37 KB
/
pylintrc.toml
File metadata and controls
46 lines (39 loc) · 1.37 KB
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
[tool.pylint.main]
# Discover python modules and packages in the file system subtree.
recursive = true
[tool.pylint.basic]
# Naming style matching correct argument names.
argument-naming-style = "camelCase"
# Naming style matching correct attribute names.
attr-naming-style = "camelCase"
# Naming style matching correct constant names.
const-naming-style = "UPPER_CASE"
# Naming style matching correct function names.
function-naming-style = "camelCase"
# Naming style matching correct variable names.
variable-naming-style = "camelCase"
# Naming style matching correct class names.
class-naming-style = "PascalCase"
# Naming style matching correct class attribute names.
class-attribute-naming-style = "camelCase"
# Naming style matching correct class constant names.
class-const-naming-style = "UPPER_CASE"
# Naming style matching correct method names.
method-naming-style = "camelCase"
# Naming style matching correct module names.
module-naming-style = "snake_case"
[tool.pylint."messages control"]
# Disable the message, report, category or checker with the given id(s).
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"redefined-builtin",
"too-many-instance-attributes",
"too-many-locals",
"too-many-branches",
"too-many-statements",
"too-many-nested-blocks",
"too-few-public-methods",
"unnecessary-lambda-assignment"
]