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:
Gavin John 2024-11-22 10:48:17 -08:00 committed by mergify[bot]
parent 7563379e93
commit fac45f20ff

View file

@ -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