Skip to content

Commit

Permalink
Merge pull request #41 from the-t-in-rtf/GH-38
Browse files Browse the repository at this point in the history
GH-38: Add `package-lock.json` to excludes for additional checks (resolves #38).
  • Loading branch information
the-t-in-rtf authored Jun 10, 2021
2 parents 5fab9d2 + 979a7d8 commit 09b4d74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/lint-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ fluid.defaults("fluid.lintAll.checkRunner", {
},
"jsonlint": {
"includes": "{that}.options.userConfig.sources.json",
"excludes": []
"excludes": ["./package-lock.json"]
},
"lintspaces": {
"jsonindentation": {
Expand All @@ -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/**/*", "./*"],
Expand Down

0 comments on commit 09b4d74

Please sign in to comment.