From 97267105e1917a0195d51b0267dc9b1073a47d88 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 25 May 2026 20:05:51 -0500 Subject: [PATCH] [core] Enable ruff EXE (flake8-executable) lint family (#16648) --- pyproject.toml | 1 + script/ci_helpers.py | 0 2 files changed, 1 insertion(+) mode change 100755 => 100644 script/ci_helpers.py diff --git a/pyproject.toml b/pyproject.toml index 94cd6d21b8..5de8775713 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,6 +112,7 @@ exclude = ['generated'] [tool.ruff.lint] select = [ "E", # pycodestyle + "EXE", # flake8-executable "F", # pyflakes/autoflake "FA", # flake8-future-annotations "FLY", # flynt: convert string formatting to f-strings diff --git a/script/ci_helpers.py b/script/ci_helpers.py old mode 100755 new mode 100644