aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gruntfile.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index f24e8a448..c5e238ced 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -136,7 +136,11 @@ module.exports = function( grunt ) {
.map( filePath => filePath[ 0 ] === "!" ?
filePath.slice( 1 ) :
`!${ filePath }`
- )
+ ),
+
+ // Explicitly ignore `dist/` as it could be unignored by
+ // the above `.eslintignore` parsing.
+ "!dist/**/*.js"
]
}
},