Tool tweak

This commit is contained in:
William Valentin
2025-07-20 13:08:25 -07:00
parent dbe2677509
commit 6c2867533a
3 changed files with 21 additions and 1 deletions

View File

@@ -1,2 +1,5 @@
[flake8]
max-line-length = 88
ignore = E203, E266, E501, W503, F403, F401
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9

1
.gitignore vendored
View File

@@ -6,3 +6,4 @@ dist/
__pycache__/
*.spec
*.log
logs/

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''