Skip to content

Commit

Permalink
Merge pull request #17 from the-t-in-rtf/GH-12-1
Browse files Browse the repository at this point in the history
GH-12-1: First argument `fluid.flatten` must be an array.  (Actually resolves #12).
  • Loading branch information
amb26 authored Jan 29, 2021
2 parents 4cba8be + b9ddeaa commit e085729
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/lint-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ fluid.defaults("fluid.lintAll.checkRunner", {
"includes": {
"expander": {
func: "fluid.flatten",
args: ["{that}.options.config.sources.json", "{that}.options.config.sources.json5"]
args: [["{that}.options.config.sources.json", "{that}.options.config.sources.json5"]]
}
},
"excludes": ["./package-lock.json"],
Expand Down Expand Up @@ -153,7 +153,7 @@ fluid.defaults("fluid.lintAll.checkRunner", {
"includes": {
"expander": {
func: "fluid.flatten",
args: ["{that}.options.config.sources.json", "{that}.options.config.sources.json5"]
args: [["{that}.options.config.sources.json", "{that}.options.config.sources.json5"]]
}
},

Expand Down Expand Up @@ -200,7 +200,7 @@ fluid.defaults("fluid.lintAll.checkRunner", {
"includes": {
"expander": {
"func": "fluid.flatten",
"args": ["{that}.options.config.sources.css", "{that}.options.config.sources.scss"]
"args": [["{that}.options.config.sources.css", "{that}.options.config.sources.scss"]]
}
},
"excludes": [],
Expand Down

0 comments on commit e085729

Please sign in to comment.