Last active
December 4, 2022 14:50
-
-
Save PraneethKarnena/8e868d91bec7d71da0cb3dfb12902c8c to your computer and use it in GitHub Desktop.
Sample pyproject.toml file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.black] | |
line-length = 88 | |
exclude = ''' | |
/( | |
\.git | |
| \.hg | |
| \.mypy_cache | |
| \.tox | |
| \.venv | |
| _build | |
| buck-out | |
| build | |
| dist | |
| migrations | |
)/ | |
''' | |
[tool.pylint] | |
[tool.pylint.master] | |
load-plugins="pylint_django, pylint_celery" | |
django-settings-module="project.settings" | |
[tool.pylint.messages_control] | |
disable = "C0330, C0326, C0115, C0116, C0114, C0103, C0415" | |
[tool.pylint.format] | |
max-line-length = "88" | |
[tool.isort] | |
max_line_length = 88 | |
ensure_newline_before_comments = true | |
include_trailing_comma = true | |
use_parentheses = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment