node-jqunit
Version:
An XUnit unit testing framework (in the style of JUnit) for node.js, using QUnit as the underlying engine
26 lines (18 loc) • 636 B
JavaScript
/*
Copyright 2013-2014 OCAD University
Licensed under the Educational Community License (ECL), Version 2.0 or the New
BSD license. You may not use this file except in compliance with one these
Licenses.
You may obtain a copy of the ECL 2.0 License and BSD License at
https://github.com/fluid-project/infusion/raw/master/Infusion-LICENSE.txt
*/
module.exports = function(grunt) {
"use strict";
grunt.initConfig({
eslint: {
all: ["lib/**/*.js", "test/**/*.js", "./*.js"],
}
});
grunt.loadNpmTasks("fluid-grunt-eslint");
grunt.registerTask("lint", "Apply eslint", ["eslint"]);
};