Skip to content

Commit

Permalink
Merge pull request #36 from ARYAN-NIKNEZHAD/chore/pylint-config
Browse files Browse the repository at this point in the history
🔧  Move Pylint Config in Pyproject.toml File
  • Loading branch information
sepehr-akbarzadeh authored Aug 20, 2024
2 parents 7fefe08 + 6edcad3 commit 84234f2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .pylintrc

This file was deleted.

14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,20 @@ exclude = '''
^stubs/
'''

[tool.pylint.master]
ignore = ["tests", "docs", "build", "stubs"]
persistent = true
ignore-patterns = ["^tests/.*", "^docs/.*", "^build/.*", "^stubs/.*"]

[tool.pylint."messages control"]
disable = ["C0114", "C0115", "C0116", "R0903"]

[tool.pylint.format]
max-line-length = 88

[tool.pylint.design]
max-args = 5

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
Expand Down

0 comments on commit 84234f2

Please sign in to comment.