Skip to content

Commit bc2af86

Browse files
committed
style(lint): configure pylint max-args rule
Add configuration to enforce maximum of 10 arguments in function definitions through pylint rules. This helps maintain clean, maintainable function signatures.
1 parent 6eda68d commit bc2af86

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.cspell.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"language": "en",
55
"words": [
66
"arithmatex",
7-
"asyncio",
87
"cuda",
98
"cython",
109
"direnv",
@@ -32,6 +31,7 @@
3231
"pydocstyle",
3332
"pyenv",
3433
"pyflow",
34+
"pylint",
3535
"pymdownx",
3636
"pypa",
3737
"pypackages",
@@ -47,7 +47,6 @@
4747
"sdist",
4848
"strftime",
4949
"trimesh",
50-
"ubelt",
5150
"unshallow",
5251
"venv",
5352
"virtualenv",

template/.config/linters/.ruff.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,6 @@ allow-star-arg-any = true
6767

6868
[lint.pydocstyle]
6969
convention = "google"
70+
71+
[lint.pylint]
72+
max-args = 10

0 commit comments

Comments
 (0)