diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-19 21:57:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-19 21:57:11 -0400 |
commit | d3ed8f43a145162e103f0f9cdb80cc36d26f8386 (patch) | |
tree | 81efa2cfd90a7b3b2afe7d978c579697a62c8e02 /package.json | |
parent | c868950385a8d0789f7c90a13ddb75bda346bb0d (diff) |
Add lint test to validate <script>s in HTML files (#848)
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 7ba23ff5..1b3fb5ad 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "build": "node ./dev/build.js", "test": "npm run test-lint && npm run test-code && npm run test-manifest", - "test-lint": "eslint . && node ./dev/lint/global-declarations.js", + "test-lint": "eslint . && node ./dev/lint/global-declarations.js && node ./dev/lint/html-scripts.js", "test-code": "node ./test/test-all.js ./test --skip ./test/test-manifest.js", "test-manifest": "node ./test/test-manifest.js" }, |