##// END OF EJS Templates
check-code: make it possible to ignore the PWD check in some situation...
marmoute -
r48793:b84fe613 stable
parent child Browse files
Show More
@@ -195,7 +195,7 b' testpats = ['
195 195 [
196 196 (r'^function', "don't use 'function', use old style"),
197 197 (r'^diff.*-\w*N', "don't use 'diff -N'"),
198 (r'\$PWD|\${PWD}', "don't use $PWD, use `pwd`"),
198 (r'\$PWD|\${PWD}', "don't use $PWD, use `pwd`", "no-pwd-check"),
199 199 (r'^([^"\'\n]|("[^"\n]*")|(\'[^\'\n]*\'))*\^', "^ must be quoted"),
200 200 (r'kill (`|\$\()', "don't use kill, use killdaemons.py"),
201 201 ],
General Comments 0
You need to be logged in to leave comments. Login now