File: CheckTabs.py

package info (click to toggle)
swift-im 5.0~alpha2.145.g12d031cf8%2Bdfsg-4.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,256 kB
  • sloc: cpp: 134,640; python: 2,701; sh: 774; xml: 561; javascript: 69; makefile: 59
file content (19 lines) | stat: -rwxr-xr-x 764 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python

import os, sys

foundExpandedTabs = False

filename = sys.argv[1]
if (filename.endswith(".cpp") or filename.endswith(".h")  or filename.endswith(".c") or filename.endswith(".mm") or filename.endswith(".ipp") or filename.endswith(".hpp") or filename.endswith(".py") or filename.endswith("SConscript") or filename.endswith("SConscript.boot") or filename.endswith("SConstruct")) and not "3rdParty" in filename : 
    file = open(filename, "r")
    contents = []
    contentsChanged = False
    for line in file.readlines() :
        if "\t" in line:
            print("File %s contains hard tabs. This is not allowed." % filename)
            file.close()
            sys.exit(-1)
    file.close()
    if contentsChanged :
        sys.exit(-1)