From 979a7d896146f03a89a787409abb31319aa6a132 Mon Sep 17 00:00:00 2001 From: Tony Atkins Date: Fri, 4 Jun 2021 12:59:54 +0200 Subject: [PATCH] GH-38: Added package-log.json to additional excludes. --- src/js/lint-all.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/lint-all.js b/src/js/lint-all.js index c410106..8fc9cf6 100644 --- a/src/js/lint-all.js +++ b/src/js/lint-all.js @@ -240,7 +240,7 @@ fluid.defaults("fluid.lintAll.checkRunner", { }, "jsonlint": { "includes": "{that}.options.userConfig.sources.json", - "excludes": [] + "excludes": ["./package-lock.json"] }, "lintspaces": { "jsonindentation": { @@ -250,7 +250,7 @@ fluid.defaults("fluid.lintAll.checkRunner", { args: [["{that}.options.userConfig.sources.json", "{that}.options.userConfig.sources.json5"]] } }, - "excludes": [] + "excludes": ["./package-lock.json"] }, "newlines": { "includes": ["./src/**/*", "./tests/**/*", "./*"],