pyproject.toml: Move relevant pyproject entries into lint subsection
According to `ruff check .`: warning: The top-level linter settings are deprecated in favour of their counterparts in the `lint` section. Please update the following options in `pyproject.toml`: - 'ignore' -> 'lint.ignore' - 'select' -> 'lint.select'
This commit is contained in:
parent
7563379e93
commit
fac45f20ff
1 changed files with 2 additions and 2 deletions
|
|
@ -2,8 +2,8 @@
|
|||
target-version = "py311"
|
||||
line-length = 88
|
||||
|
||||
select = ["E", "F", "I"]
|
||||
ignore = ["E501"]
|
||||
lint.select = ["E", "F", "I"]
|
||||
lint.ignore = ["E501"]
|
||||
|
||||
[tool.black]
|
||||
line-length = 88
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue