accountant-ui/grunt-config/jshint.js

14 lines
269 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')
},
frontend_js: [
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
]
};