-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpylintrc.toml
More file actions
21 lines (17 loc) · 845 Bytes
/
pylintrc.toml
File metadata and controls
21 lines (17 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.pylint.main]
# Tip: use the following command to generate a complete
# example .toml file. The [tool.pylint.*] sections were
# edited to include only overrides.
# cd src && uv run pylint --disable=bare-except,invalid-name --class-rgx='[A-Z][a-z]+' --generate-toml-config
[tool.pylint.design]
# Maximum number of positional arguments for function / method.
max-positional-arguments = 8
max-args = 8
[tool.pylint.format]
# Maximum number of characters on a single line. Pylint's default of 100 is based
# on PEP 8's guidance that teams may choose line lengths up to 99 characters.
# However, we use some long lines for error messages that normally are not of interest to read.
max-line-length = 250
[tool.pylint.variables]
# Tells whether unused global variables should be treated as a violation.
allow-global-unused-variables = false