Skip to content

Instantly share code, notes, and snippets.

@yurfuwa-chan
Created December 12, 2012 11:00
Show Gist options
  • Save yurfuwa-chan/4266942 to your computer and use it in GitHub Desktop.
Save yurfuwa-chan/4266942 to your computer and use it in GitHub Desktop.
gruntでhtmllintする
module.exports = function(grunt){
grunt.initConfig({
htmllint:{
all:['index.html']
},
watch:{
files:['index.html'],
tasks:'htmllint'
}
});
//https://github.com/jzaefferer/grunt-html
grunt.loadNpmTasks('grunt-html');
grunt.registerTask('default','watch');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment