Skip to content

Commit

Permalink
'ignore' -> 'lint.ignore'
Browse files Browse the repository at this point in the history
  • Loading branch information
hswong3i committed Jan 22, 2025
1 parent 32aa888 commit 96c1cf8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ openstack = [
]

[tool.ruff]
ignore = [
lint.ignore = [
"E501", # we use black
# we deliberately ignore these:
"EM102",
Expand All @@ -100,6 +100,7 @@ ignore = [
"B028",
"BLE",
"C901",
"COM812",
"D",
"DTZ",
"FBT",
Expand All @@ -118,15 +119,15 @@ ignore = [
"FIX002",
"TRY",
]
select = ["ALL"]
lint.select = ["ALL"]
target-version = "py39"
# Same as Black.
line-length = 88

[tool.ruff.flake8-pytest-style]
[tool.ruff.lint.flake8-pytest-style]
parametrize-values-type = "tuple"

[tool.ruff.isort]
[tool.ruff.lint.isort]
known-first-party = ["molecule_plugins"]

[project.entry-points."molecule.driver"]
Expand Down

0 comments on commit 96c1cf8

Please sign in to comment.