Skip to content
Snippets Groups Projects
Commit fca32513 authored by Campbell Barton's avatar Campbell Barton
Browse files

trailing_space_clean: update config

parent 48736838
No related branches found
No related tags found
No related merge requests found
import os
PATHS = (
"intern/ghost",
"release/scripts/modules",
"release/scripts/startup",
"source/blender/bmesh",
......@@ -8,9 +9,13 @@ PATHS = (
"source/blender/editors",
"source/blender/gpu",
"source/blender/python",
"tests",
)
SOURCE_DIR = os.path.normpath(os.path.abspath(os.path.normpath(
os.path.join(os.path.dirname(__file__), "..", "..", ".."))))
PATHS = tuple(os.path.join(SOURCE_DIR, p) for p in PATHS)
PATHS = tuple(
os.path.join(SOURCE_DIR, p.replace("/", os.sep))
for p in PATHS
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment