generator-appverse-ionic
Version:
Appverse Ionic generator
21 lines (18 loc) • 428 B
JavaScript
/*jshint node:true */
;
// Make sure code styles are up to par and there are no obvious mistakes
module.exports = {
options: {
jshintrc: '.jshintrc',
force: true,
reporter: require('jshint-stylish')
},
all: [
'Gruntfile.js',
'app/components/**/*.js',
'app/*.js',
'app/states/*.js',
'test/*.js',
'test/{e2e,unit}/**/*.js'
]
};