aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2016-06-22 19:41:57 +0400
committerGitHub <noreply@github.com>2016-06-22 19:41:57 +0400
commit25d8ccd1112d75394b91071ff7eba13283aaf898 (patch)
tree19dd5f7d17989f054ab90f15635fdbbd6ab0afb5 /Gruntfile.js
parent58c6ca9822afa42d3b40cca8edb0abe90a2bcb34 (diff)
downloadjquery-25d8ccd1112d75394b91071ff7eba13283aaf898.tar.gz
jquery-25d8ccd1112d75394b91071ff7eba13283aaf898.zip
Build: Improve ESLint configuration (#3188)
* Bump eslint-config-jquery package to 0.1.4 version * Add subtask "dist" to "eslint" task and add it to the build task list * Make gitignore globs more flexible for the "dist" folder Fixes gh-3169
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 8f8408d83..62adbda39 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -109,6 +109,7 @@ module.exports = function( grunt ) {
quiet: true
},
all: ".",
+ dist: "dist/jquery.js",
dev: [ "src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/**/*.js" ]
},
testswarm: {
@@ -201,7 +202,7 @@ module.exports = function( grunt ) {
]
);
- grunt.registerTask( "default", [ "dev", "test_fast", "compare_size" ] );
+ grunt.registerTask( "default", [ "dev", "eslint:dist", "test_fast", "compare_size" ] );
grunt.registerTask( "precommit_lint", [ "newer:jsonlint", "newer:eslint:all" ] );
};