Skip to content

Commit 39ac43e

Browse files
committed
Added pylint settings.
1 parent 1ee993b commit 39ac43e

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

pyproject.toml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,22 @@ 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+
13+
[tool.pylint.basic]
14+
argument-naming-style = "camelCase"
15+
attr-naming-style = "camelCase"
16+
class-attribute-naming-style = "camelCase"
17+
class-const-naming-style = "UPPER_CASE"
18+
class-naming-style = "PascalCase"
19+
const-naming-style = "UPPER_CASE"
20+
function-naming-style = "camelCase"
21+
inlinevar-naming-style = "camelCase"
22+
method-naming-style = "PascalCase"
23+
module-naming-style = "any"
24+
variable-naming-style = "camelCase"
1125

1226
[tool.mypy]
1327
packages = ["pyVersioning"]

0 commit comments

Comments
 (0)