File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed
Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,23 @@ requires = [
66]
77build-backend = " setuptools.build_meta"
88
9- [tool .black ]
10- line-length = 120
9+ [tool .pylint .format ]
10+ indent-string =" \t "
11+ max-line-length = 120
12+ ignore-long-lines = " ^.{0,110}#: .*"
13+
14+ [tool .pylint .basic ]
15+ argument-naming-style = " camelCase"
16+ attr-naming-style = " camelCase"
17+ class-attribute-naming-style = " camelCase"
18+ class-const-naming-style = " UPPER_CASE"
19+ class-naming-style = " PascalCase"
20+ const-naming-style = " UPPER_CASE"
21+ function-naming-style = " camelCase"
22+ inlinevar-naming-style = " camelCase"
23+ method-naming-style = " PascalCase"
24+ module-naming-style = " any"
25+ variable-naming-style = " camelCase"
1126
1227[tool .mypy ]
1328packages = [" pyEDAA.ProjectModel" ]
You can’t perform that action at this time.
0 commit comments