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

github.com/twbs/grunt-bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 48ac214..25800fa 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -11,14 +11,14 @@
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
- jshint: {
+ eslint: {
all: [
'Gruntfile.js',
'tasks/*.js',
'<%= nodeunit.tests %>'
],
options: {
- jshintrc: '.jshintrc'
+ configFile: '.eslintrc.json'
}
},
@@ -125,13 +125,13 @@ module.exports = function(grunt) {
grunt.loadTasks('tasks');
// These plugins provide necessary tasks.
- grunt.loadNpmTasks('grunt-contrib-jshint');
+ grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
// Whenever the "test" task is run, first clean the "tmp" dir, then lint,
// then test the result.
- grunt.registerTask('test', ['clean', 'jshint', 'nodeunit']);
+ grunt.registerTask('test', ['clean', 'eslint', 'nodeunit']);
// By default, run all tests.
grunt.registerTask('default', 'test');