mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1fa47a6c04
* dev: formatting and removing unused imports * dev: remove unused imports and format all the files * fix: linting errors * dev: format using ruff * dev: remove unused variables
26 lines
342 B
TOML
26 lines
342 B
TOML
[tool.black]
|
|
line-length = 79
|
|
target-version = ['py36']
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
| venv
|
|
)/
|
|
'''
|
|
|
|
[tool.ruff]
|
|
line-length = 79
|
|
exclude = [
|
|
"**/__init__.py",
|
|
]
|
|
|