Skip to content

Commit e4446a3

Browse files
committed
Added pylint rules.
1 parent f08c64e commit e4446a3

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

pyproject.toml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,23 @@ requires = [
66
]
77
build-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]
1328
packages = ["pyEDAA.ProjectModel"]

0 commit comments

Comments
 (0)