Skip to content

Commit 44906a8

Browse files
authored
Build: Make the eslint:dev task not lint the dist/ folder
There was a mistake in paths logic that made the `dist/` folder linted even in the `eslint:dev` task which is run before the build. Fix that by explicitly ignoring the `dist/` folder at the end of the file list. Closes gh-5257
1 parent fd6ffc5 commit 44906a8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Gruntfile.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,11 @@ module.exports = function( grunt ) {
136136
.map( filePath => filePath[ 0 ] === "!" ?
137137
filePath.slice( 1 ) :
138138
`!${ filePath }`
139-
)
139+
),
140+
141+
// Explicitly ignore `dist/` as it could be unignored by
142+
// the above `.eslintignore` parsing.
143+
"!dist/**/*.js"
140144
]
141145
}
142146
},

0 commit comments

Comments
 (0)