Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@chrisrebert.com>2016-05-31 08:14:18 +0300
committerChris Rebert <code@chrisrebert.com>2016-05-31 08:16:32 +0300
commitf77d8c91a9c9f53b30535016c72e821f047cd924 (patch)
tree04bee6e03e713471491b6a07e44d01e7a35fae2f /Gruntfile.js
parent14c7ba95f97d853ef653893abfe530a919a1ed24 (diff)
Killed the grunt-eslint middleman; Long live ESLint.
Refs #19908 [skip sauce] [skip validator]
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 4b350e264e..b2f702e4e5 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -107,13 +107,6 @@ module.exports = function (grunt) {
}
},
- eslint: {
- options: {
- configFile: 'js/.eslintrc'
- },
- target: 'js/src/*.js'
- },
-
jscs: {
options: {
config: 'js/.jscsrc'
@@ -438,7 +431,7 @@ module.exports = function (grunt) {
testSubtasks.push('saucelabs-qunit');
}
grunt.registerTask('test', testSubtasks);
- grunt.registerTask('test-js', ['eslint', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']);
+ grunt.registerTask('test-js', ['jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']);
// JS distribution task.
grunt.registerTask('dist-js', ['babel:dev', 'concat', 'babel:dist', 'stamp', 'uglify:core', 'commonjs']);