Skip to content

Commit

Permalink
remove dead pylint config from pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Jun 6, 2024
1 parent 943f311 commit f4db401
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,31 +152,6 @@ source = [
"django_typer"
]

[pylint]
output-format = "colorized"
max-line-length = 88

[tool.pylint.'DESIGN']
max-args=30
max-locals=30 # there are lots of options!
max-module-lines=2000
max-attributes=20
max-statements=100

[tool.pylint.'MASTER']
ignore="tests"

[tool.pylint.'MESSAGES CONTROL']
disable = [
'R0903', # too few public methods - seriously?
'W0613', # unused argument - unavoidable in generic base interfaces
'W0212', # access to a protected member of a client class - lots of monkey patches required here
'C0415', # imports outside top level. I put them where they need to be!
'C0413', # wrong import order. I put them where they need to be!
'C0411', # wrong import order. I put them where they need to be!
'W0603', # Using the global statement
]

[tool.pyright]
exclude = ["tests/**/*"]
include = [
Expand Down

0 comments on commit f4db401

Please sign in to comment.