Skip to content

Commit

Permalink
Define pylint configuration in the pyproject.toml file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaeladuta committed Nov 14, 2024
1 parent e24ed3f commit 180fe48
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .pylintrc

This file was deleted.

16 changes: 15 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,18 @@ classifiers = [

[project.urls]
"Homepage" = "https://github.com/lotzma/L2Gv2"
"Bug Tracker" = "https://github.com/lotzma/L2Gv2/issues"
"Bug Tracker" = "https://github.com/lotzma/L2Gv2/issues"

[tool.pylint.'MASTER']
ignore = ["docs/*"]

[tool.pylint.'MESSAGES CONTROL']
notes = "TODO"
disable = [
"fixme",
"import-error",
"duplicate-code",
"too-many-locals",
"too-many-arguments",
"too-many-positional-arguments"
]

0 comments on commit 180fe48

Please sign in to comment.