diff --git a/crates/ruff_linter/src/registry.rs b/crates/ruff_linter/src/registry.rs index e156e2900c75d7..3d0ebafcb4e3ca 100644 --- a/crates/ruff_linter/src/registry.rs +++ b/crates/ruff_linter/src/registry.rs @@ -115,6 +115,9 @@ pub enum Linter { /// [flake8-import-conventions](https://github.com/joaopalmeiro/flake8-import-conventions) #[prefix = "ICN"] Flake8ImportConventions, + /// [flake8-logging](https://pypi.org/project/flake8-logging/) + #[prefix = "LOG"] + Flake8Logging, /// [flake8-logging-format](https://pypi.org/project/flake8-logging-format/) #[prefix = "G"] Flake8LoggingFormat, @@ -202,9 +205,6 @@ pub enum Linter { /// [refurb](https://pypi.org/project/refurb/) #[prefix = "FURB"] Refurb, - /// [flake8-logging](https://pypi.org/project/flake8-logging/) - #[prefix = "LOG"] - Flake8Logging, /// Ruff-specific rules #[prefix = "RUF"] Ruff,