We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee993b commit 39ac43eCopy full SHA for 39ac43e
pyproject.toml
@@ -6,8 +6,22 @@ requires = [
6
]
7
build-backend = "setuptools.build_meta"
8
9
-[tool.black]
10
-line-length = 120
+[tool.pylint.format]
+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"
25
26
[tool.mypy]
27
packages = ["pyVersioning"]
0 commit comments