generator-scratch
Version:
Scratch is a starter theme generator based on _s and Foundation. It's a theme meant for hacking so don't use it as a Parent Theme. Instead try turning it into the next, most awesome, WordPress theme out there.
25 lines (24 loc) • 378 B
JavaScript
module.exports = {
/**
* grunt-contrib-jshint
*
* Validate files with JSHint.
*
* @link https://www.npmjs.com/package/grunt-contrib-jshint
*/
options: {
curly: true,
eqeqeq: true,
eqnull: true,
browser: true,
globals: {
jQuery: true
}
},
all: [
'Gruntfile.js',
'src/js/**/*.js',
'!src/js/customizer.js',
'!src/js/skip-link-focus.js'
]
};