jshint.js 238 B

12345678910111213
  1. module.exports = function(config) {
  2. return {
  3. // just lint the source dir
  4. source: {
  5. files: {
  6. src: ['Gruntfile.js', '<%= srcDir %>/app/**/*.js']
  7. }
  8. },
  9. options: {
  10. jshintrc: '.jshintrc'
  11. }
  12. };
  13. };