Skip to content

Commit e3d8e29

Browse files
committed
A reasonable set of pylint settings to get us going
1 parent 5cef7c4 commit e3d8e29

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

pyproject.toml

+13
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,16 @@ where = ["Lib"]
165165

166166
[tool.setuptools_scm]
167167
write_to = "Lib/gftools/_version.py"
168+
169+
[tool.pylint.'MESSAGES CONTROL']
170+
max-line-length = 120
171+
disable = [
172+
"R", # Disable all recommendations for now
173+
"missing-class-docstring",
174+
"missing-function-docstring",
175+
"missing-module-docstring",
176+
"duplicate-code",
177+
"protected-access",
178+
"attribute-defined-outside-init",
179+
"invalid-name", # For now, we would like to fix these
180+
]

0 commit comments

Comments
 (0)