commit a1a75a53edc3422ea412a1d1311e31e3cb02d2ed
parent b50f6f57c946af0f30dad9650f940d26214a073f
Author: Alex Hochheiden <ahochheiden@mozilla.com>
Date: Wed, 7 Jan 2026 20:45:07 +0000
Bug 2006716 - Migrate `[isort]` to `[lint.isort]` to fix deprecation warning r=mozperftest-reviewers,sparky
```
warning: The top-level linter settings are deprecated in favour of their counterparts in the `lint` section. Please update the following options in `python/lldbutils/.ruff.toml`:
ruff-format (91) | - 'isort' -> 'lint.isort'
```
Differential Revision: https://phabricator.services.mozilla.com/D278037
Diffstat:
9 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/python/lldbutils/.ruff.toml b/python/lldbutils/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["lldbutils"]
diff --git a/python/mach/.ruff.toml b/python/mach/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["mach"]
diff --git a/python/mozboot/.ruff.toml b/python/mozboot/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["mozboot"]
diff --git a/python/mozbuild/.ruff.toml b/python/mozbuild/.ruff.toml
@@ -5,5 +5,5 @@ src = [
"mozbuild/test",
]
-[isort]
+[lint.isort]
known-first-party = ["mozbuild"]
diff --git a/python/mozlint/.ruff.toml b/python/mozlint/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["mozlint"]
diff --git a/python/mozperftest/.ruff.toml b/python/mozperftest/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["mozperftest"]
diff --git a/python/mozrelease/.ruff.toml b/python/mozrelease/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["mozrelease"]
diff --git a/python/mozterm/.ruff.toml b/python/mozterm/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["mozterm"]
diff --git a/python/mozversioncontrol/.ruff.toml b/python/mozversioncontrol/.ruff.toml
@@ -1,4 +1,4 @@
extend = "../../pyproject.toml"
-[isort]
+[lint.isort]
known-first-party = ["mozversioncontrol"]