Skip to content

Instantly share code, notes, and snippets.

@PraneethKarnena
Last active December 4, 2022 14:50
Show Gist options
  • Save PraneethKarnena/8e868d91bec7d71da0cb3dfb12902c8c to your computer and use it in GitHub Desktop.
Save PraneethKarnena/8e868d91bec7d71da0cb3dfb12902c8c to your computer and use it in GitHub Desktop.
Sample pyproject.toml file
[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