Skip to content
Snippets Groups Projects
Gruntfile.js 377 B
Newer Older
'use strict';

module.exports = function (grunt) {
  var config = require('./gruntconfig');

  config.tasks.forEach(grunt.loadNpmTasks);
  grunt.initConfig(config);

Jeremy M Fee's avatar
Jeremy M Fee committed
  grunt.registerTask('lint', [
    'flake8',
    'jshint'
  ]);

  grunt.registerTask('test', [
    'nose:main'
  ]);

  grunt.registerTask('default', [
Jeremy M Fee's avatar
Jeremy M Fee committed
    'lint',