Datasets:

Modalities:
Text
Formats:
json
Languages:
code
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
Asankhaya Sharma
update the dataset
4fb7874
raw
history blame
591 Bytes
'use strict';module.exports = function (grunt) { // Project configuration. grunt.initConfig({ eslint: { all: ['index.js', 'lib/**/*.js', 'test/**/*.js', 'examples/**/*.js', 'Gruntfile.js'] }, mochaTest: { all: { options: { reporter: 'spec' }, src: ['test/**/*-test.js'] } } }); // Load the plugin(s) grunt.loadNpmTasks('grunt-eslint'); grunt.loadNpmTasks('grunt-mocha-test'); // Tasks grunt.registerTask('default', ['eslint', 'mochaTest']);};