aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-06-02 21:48:53 -0700
committerMark Otto <[email protected]>2016-06-02 21:48:53 -0700
commit8feae9075ae55be4e6cd0e884fbfa006a6639ceb (patch)
tree0124594afc748b650fbe2f840b1e8d4cabc841cf /Gruntfile.js
parent96835e1512631a1a54e99e1179e06d2e23060705 (diff)
parent0b4187d37b8fb1a65a5929329b51b04a2d6aa1eb (diff)
downloadbootstrap-8feae9075ae55be4e6cd0e884fbfa006a6639ceb.tar.xz
bootstrap-8feae9075ae55be4e6cd0e884fbfa006a6639ceb.zip
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index fb7753170..b2f702e4e 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -1,6 +1,7 @@
/*!
* Bootstrap's Gruntfile
* http://getbootstrap.com
+ * Copyright 2013-2016 The Bootstrap Authors
* Copyright 2013-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
@@ -106,13 +107,6 @@ module.exports = function (grunt) {
}
},
- eslint: {
- options: {
- configFile: 'js/.eslintrc'
- },
- target: 'js/src/*.js'
- },
-
jscs: {
options: {
config: 'js/.jscsrc'
@@ -437,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']);