diff options
| -rw-r--r-- | polly/.arcconfig | 2 | ||||
| -rw-r--r-- | polly/.arclint | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/polly/.arcconfig b/polly/.arcconfig index d64a64853a4..7a82312ae75 100644 --- a/polly/.arcconfig +++ b/polly/.arcconfig @@ -2,8 +2,6 @@ "project_id" : "polly", "conduit_uri" : "http://reviews.llvm.org/", "history.immutable" : true, - "linter.scriptandregex.script": "sh -c './utils/check_format.sh \"$0\" 2> /dev/null || true'", - "linter.scriptandregex.regex": "/^(OK:(?P<ignore>.+)|Error:) (?P<message>.+)$/m", "load" : [ "utils/arcanist/LitTestEngine" ], diff --git a/polly/.arclint b/polly/.arclint index 84546f5fda5..f1df53b230b 100644 --- a/polly/.arclint +++ b/polly/.arclint @@ -3,7 +3,9 @@ "format": { "include": "(include/polly/.+\\.h$|lib/.+\\.cpp$)", "exclude": "(lib/JSON/.*)", - "type": "script-and-regex" + "type": "script-and-regex", + "script-and-regex.script": "sh -c './utils/check_format.sh \"$0\" 2> /dev/null || true'", + "script-and-regex.regex": "/^(OK:(?P<ignore>.+)|Error:) (?P<message>.+)$/m" }, "chmod": { "type": "chmod" |

