##// END OF EJS Templates
check-code: add check for 'source'
Yuya Nishihara -
r11210:0c008888 default
parent child Browse files
Show More
@@ -61,6 +61,7 b' testpats = ['
61 (r'[^\n]\Z', "no trailing newline"),
61 (r'[^\n]\Z', "no trailing newline"),
62 (r'export.*=', "don't export and assign at once"),
62 (r'export.*=', "don't export and assign at once"),
63 ('^([^"\']|("[^"]*")|(\'[^\']*\'))*\\^', "^ must be quoted"),
63 ('^([^"\']|("[^"]*")|(\'[^\']*\'))*\\^', "^ must be quoted"),
64 (r'^source\b', "don't use 'source', use '.'"),
64 ]
65 ]
65
66
66 testfilters = [
67 testfilters = [
General Comments 0
You need to be logged in to leave comments. Login now