Skip to content

Commit ccc8077

Browse files
authored
chore: move top-level settings into lint section (#1198)
Signed-off-by: Deepyaman Datta <[email protected]>
1 parent a500bf5 commit ccc8077

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kedro-airflow/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,5 @@ select = [
9898
]
9999
ignore = ["E501"] # Black takes care of line-too-long
100100

101-
[tool.ruff.per-file-ignores]
101+
[tool.ruff.lint.per-file-ignores]
102102
"{tests,features}/*" = ["T201", "PLR2004", "PLR0915", "PLW1510"]

kedro-datasets/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ select = [
377377
]
378378
ignore = ["E501", "F401"] # Black takes care of line-too-long
379379

380-
[tool.ruff.per-file-ignores]
380+
[tool.ruff.lint.per-file-ignores]
381381
"{tests,docs,kedro_datasets_experimental/tests}/*" = ["PLR2004", "PLR0913", "T201"]
382382
"*/{__init__.py}" = ["F821"] # temporarily ignore ruff undefined name errors for dataset aliases
383383

kedro-docker/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,5 @@ select = [
9898
]
9999
ignore = ["E501"] # Black takes care of line-too-long
100100

101-
[tool.ruff.per-file-ignores]
101+
[tool.ruff.lint.per-file-ignores]
102102
"{tests,features}/*" = ["T201", "PLW1510"]

0 commit comments

Comments
 (0)