Bug 1881295: remove isort from formatters list r=linter-reviewers,marco,ahal

Using `isort` for import sorting in Python has been replaced by
`ruff`. Update the formatters list to remove `isort`. We will add
`ruff` at a later date once we have asserted it is appropriate to
add to this formatters list.

Differential Revision: https://phabricator.services.mozilla.com/D203127
This commit is contained in:
Connor Sheehan 2024-02-29 18:31:49 +00:00
parent 24d2e39f9d
commit 92d48baabe

View file

@ -23,7 +23,7 @@ if os.path.exists(thunderbird_excludes):
GLOBAL_EXCLUDES = ["**/node_modules", "tools/lint/test/files", ".hg", ".git"]
VALID_FORMATTERS = {"black", "clang-format", "rustfmt", "isort"}
VALID_FORMATTERS = {"black", "clang-format", "rustfmt"}
VALID_ANDROID_FORMATTERS = {"android-format"}
# Code-review bot must index issues from the whole codebase when pushing