Skip to content
Snippets Groups Projects
trailing_space_clean_config.py 505 B
Newer Older
  • Learn to ignore specific revisions
  • 
    import os
    PATHS = (
    
        "intern/ghost",
    
        "release/scripts/modules",
        "release/scripts/startup",
        "source/blender/bmesh",
    
        "source/blender/draw",  # blender2.8 branch only.
    
        "source/blender/editors",
    
        "source/blender/gpu",
    
        "source/blender/python",
    
    )
    
    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.replace("/", os.sep))
        for p in PATHS
    )