diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-06-14 09:01:02 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-07-03 16:01:51 +0200 |
commit | 7da828375afb20d58736bb1eb530f915c445d5b9 (patch) | |
tree | f9a1223e6c4de203447e6974d0e88b98e66aef28 /Gruntfile.js | |
parent | 4ed52cba6555660268210ef76c38101d9dfef8df (diff) | |
download | jquery-ui-7da828375afb20d58736bb1eb530f915c445d5b9.tar.gz jquery-ui-7da828375afb20d58736bb1eb530f915c445d5b9.zip |
Build: Implement an asciilint task to verify content of ui files (ignore i18n). Fixes #9037 - Build: Verify characters in output
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 4eee9a1ab..b35a4514d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -244,7 +244,7 @@ grunt.initConfig({ }); grunt.registerTask( "default", [ "lint", "test" ] ); -grunt.registerTask( "lint", [ "jshint", "csslint", "htmllint" ] ); +grunt.registerTask( "lint", [ "asciilint", "jshint", "csslint", "htmllint" ] ); grunt.registerTask( "test", [ "qunit" ] ); grunt.registerTask( "sizer", [ "concat:ui", "uglify:main", "compare_size:all" ] ); grunt.registerTask( "sizer_all", [ "concat:ui", "uglify", "compare_size" ] ); |