You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
421 B

  1. 'use strict';
  2. var fs = require('fs');
  3. module.exports = function (grunt, options) {
  4. return {
  5. options: JSON.parse(fs.readFileSync('.jshintrc')),
  6. source: {
  7. src: ['src/directives/*.js', 'src/services/*.js', 'website/js/**/*.js']
  8. },
  9. tests: {
  10. src: ['test/unit/*.js', 'test/e2e/*.js']
  11. },
  12. grunt: {
  13. src: ['Gruntfile.js']
  14. }
  15. };
  16. };