Normalize whitespaces in cmake files

This commit is contained in:
Andrej730
2026-08-24 18:19:45 +05:00
parent 908d85a51a
commit a5b6f83a3d
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -284,12 +284,17 @@ PATTERNS = (
"*.cpp",
"*.h",
"*.i",
"*.cmake",
"*/CMakeLists.txt",
)
REPO_ROOT = Path(subprocess.check_output(["git", "rev-parse", "--show-toplevel"], text=True).strip())
# Generated files; formatted by the express codegen, not by this script.
IGNORED_DIRS = (REPO_ROOT / "src/ifcparse/schemas",)
IGNORED_DIRS = (
REPO_ROOT / "src/ifcparse/schemas",
REPO_ROOT / "win/patches",
)
def get_tracked_files(root: Path | None = None) -> list[Path]: