2010-08-19 12:25:58 -05:00
|
|
|
#!/usr/bin/env python
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2010-08-18 18:07:26 -05:00
|
|
|
import sys, fileinput, subprocess
|
2010-06-23 23:03:09 -05:00
|
|
|
|
|
|
|
err=0
|
|
|
|
cols=78
|
|
|
|
|
2010-08-18 18:07:26 -05:00
|
|
|
# Be careful to support Python 2.4, 2.6, and 3.x here!
|
|
|
|
config_proc=subprocess.Popen([ "git", "config", "core.autocrlf" ],
|
2011-03-19 20:32:46 -05:00
|
|
|
stdout=subprocess.PIPE)
|
2010-08-18 18:07:26 -05:00
|
|
|
result=config_proc.communicate()[0]
|
|
|
|
|
|
|
|
true="true".encode('utf8')
|
|
|
|
autocrlf=result.strip() == true if result is not None else False
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
def report_err(s):
|
|
|
|
global err
|
|
|
|
print("%s:%d: %s" % (fileinput.filename(), fileinput.filelineno(), s))
|
|
|
|
err=1
|
|
|
|
|
|
|
|
for line in fileinput.input(openhook=fileinput.hook_encoded("utf-8")):
|
|
|
|
if line.find('\t') != -1 and fileinput.filename().find("Makefile") == -1:
|
|
|
|
report_err("tab character")
|
|
|
|
|
2010-08-18 18:07:26 -05:00
|
|
|
if not autocrlf and line.find('\r') != -1:
|
2010-06-23 23:03:09 -05:00
|
|
|
report_err("CR character")
|
|
|
|
|
2011-07-13 17:44:09 -05:00
|
|
|
if line.endswith(" \n") or line.endswith("\t\n"):
|
|
|
|
report_err("trailing whitespace")
|
|
|
|
|
2010-08-18 18:07:26 -05:00
|
|
|
line_len = len(line)-2 if autocrlf else len(line)-1
|
|
|
|
if line_len > cols:
|
2010-06-23 23:03:09 -05:00
|
|
|
report_err("line longer than %d chars" % cols)
|
|
|
|
|
|
|
|
|
|
|
|
sys.exit(err)
|
|
|
|
|