From 9b122815ce7058b8a26093b1b0d12b7e56e0e553 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Mon, 4 Mar 2013 20:46:39 +0100 Subject: [PATCH] Lint specs with strict mode --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 9494b18f1b..97cf6e50f8 100755 --- a/build.py +++ b/build.py @@ -333,7 +333,7 @@ def build_check_requires_timestamp(t): @target('build/lint-spec-timestamp', SPEC, precious=True) def build_lint_spec_timestamp(t): - t.run('%(GJSLINT)s', t.newer(SPEC)) + t.run('%(GJSLINT)s', '--strict', t.newer(SPEC)) t.touch()