From ae93a3f98468fc93c22ac3964bd657a59415eabe Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Thu, 8 Dec 2022 17:03:01 +0000 Subject: [PATCH] Fixup: Config file name in code style script Signed-off-by: David Horstmann --- scripts/code_style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/code_style.py b/scripts/code_style.py index 588484856..ebf0cd48e 100755 --- a/scripts/code_style.py +++ b/scripts/code_style.py @@ -27,7 +27,7 @@ import sys from typing import List UNCRUSTIFY_SUPPORTED_VERSION = "0.75.1" -CONFIG_FILE = "codestyle.cfg" +CONFIG_FILE = ".uncrustify.cfg" UNCRUSTIFY_EXE = "uncrustify" UNCRUSTIFY_ARGS = ["-c", CONFIG_FILE] STDOUT_UTF8 = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')