accountant-ui/grunt-config/jshint.js

14 lines
268 B
JavaScript
Raw Normal View History

2015-06-13 17:37:35 +02:00
module.exports = {
options: {
2016-02-08 00:27:43 +01:00
jshintrc: '.jshintrc',
2015-06-13 17:37:35 +02:00
reporter: require('jshint-stylish')
},
2016-10-09 20:33:59 +02:00
frontendJs: [
2016-02-17 09:52:13 +01:00
'<%= accountant.frontend.src %>/js/*.js'
],
toolchain: [
2016-02-17 08:33:58 +01:00
'Gruntfile.js',
'grunt-config/*.js'
2015-06-13 17:37:35 +02:00
]
};