Skip to content

Instantly share code, notes, and snippets.

@AppleBoiy
Created November 4, 2023 13:08
Show Gist options
  • Save AppleBoiy/57a87e93645c7d1c365676b19998caa9 to your computer and use it in GitHub Desktop.
Save AppleBoiy/57a87e93645c7d1c365676b19998caa9 to your computer and use it in GitHub Desktop.
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| node_modules
)/
'''
[tool.pylint]
disable = "C0103, C0114, C0115, C0116, W0611"
max-line-length = 120
ignore = ["tests/*"]
[tool.pyright]
include = ["app", "src"]
exclude = [
"**/__pycache__",
"src/stubs"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment