fix pyproject.toml bug

This commit is contained in:
hezz 2023-08-15 18:33:58 +08:00
parent 1129b4e8e7
commit 7895776f44
2 changed files with 3 additions and 13 deletions

View file

@ -23,4 +23,5 @@ repos:
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
- id: black
args: ['--line-length', '120']

View file

@ -1,10 +1,3 @@
[tool.black]
line-length = 119
target-version = ['py39']
[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = ["E", "F"]
ignore = ["E501", "E712", "E722", "F821", "E731"]
@ -44,8 +37,4 @@ line-length = 119
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Assume Python 3.9
target-version = "py39"
[tool.ruff.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
target-version = "py39"