Skip to content

Commit f4db401

Browse files
committed
remove dead pylint config from pyproject.toml
1 parent 943f311 commit f4db401

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

pyproject.toml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -152,31 +152,6 @@ source = [
152152
"django_typer"
153153
]
154154

155-
[pylint]
156-
output-format = "colorized"
157-
max-line-length = 88
158-
159-
[tool.pylint.'DESIGN']
160-
max-args=30
161-
max-locals=30 # there are lots of options!
162-
max-module-lines=2000
163-
max-attributes=20
164-
max-statements=100
165-
166-
[tool.pylint.'MASTER']
167-
ignore="tests"
168-
169-
[tool.pylint.'MESSAGES CONTROL']
170-
disable = [
171-
'R0903', # too few public methods - seriously?
172-
'W0613', # unused argument - unavoidable in generic base interfaces
173-
'W0212', # access to a protected member of a client class - lots of monkey patches required here
174-
'C0415', # imports outside top level. I put them where they need to be!
175-
'C0413', # wrong import order. I put them where they need to be!
176-
'C0411', # wrong import order. I put them where they need to be!
177-
'W0603', # Using the global statement
178-
]
179-
180155
[tool.pyright]
181156
exclude = ["tests/**/*"]
182157
include = [

0 commit comments

Comments
 (0)