From 81bd46e567aa61c2b9757c30a51883596f5bd23f Mon Sep 17 00:00:00 2001 From: Morgan Roderick Date: Mon, 19 Jan 2015 11:12:27 +0100 Subject: [PATCH] Tidy Gruntfile.js Since we're running JSLint from `npm run`, we no longer need to have JSLint configuration in `Gruntfile.js` --- Gruntfile.js | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 64c88b7..fabe972 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,29 +1,9 @@ -/*jslint white:true*/ -/*global - module -*/ module.exports = function(grunt) { 'use strict'; // Project configuration. grunt.initConfig({ - jslint: { - files: [ - 'src/**/*.js', - 'test/**/*.js' - ], - - exclude: [], - - options: { - junit: 'out/junit.xml', // write the output to a JUnit XML - log: 'out/lint.log', - jslintXml: 'out/jslint_xml.xml', - errorsOnly: true // only display errors - } - }, - buster: { test: { config: 'test/buster.js'