From 5dbe9a0dcd07ed04229538014c3034cb464cdccf Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Mon, 31 Aug 2026 15:52:56 +0000 Subject: [PATCH] Ignore executable flag of the temporary file being used to build devserver script. --- fastapi_vue_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi_vue_setup.py b/fastapi_vue_setup.py index ff49708..fe8fa45 100644 --- a/fastapi_vue_setup.py +++ b/fastapi_vue_setup.py @@ -80,7 +80,7 @@ def ruff_format_content( [ # noqa: S607 "ruff", "check", - "--ignore=INP001,N999,CPY001", + "--ignore=EXE001,INP001,N999,CPY001", "--fix", "--output-format=concise", str(temp_file),