mirror of
https://github.com/iv-org/videojs-quality-selector.git
synced 2025-05-02 14:36:13 -04:00
Initial commit
This commit is contained in:
commit
f261cc04a2
12 changed files with 178 additions and 0 deletions
33
Gruntfile.js
Normal file
33
Gruntfile.js
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* Copyright (c) 2017 Jeremy Thomerson
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
module.exports = function(grunt) {
|
||||
|
||||
var config;
|
||||
|
||||
config = {
|
||||
js: {
|
||||
all: [ 'Gruntfile.js', 'src/**/*.js', 'tests/**/*.js' ],
|
||||
},
|
||||
};
|
||||
|
||||
grunt.initConfig({
|
||||
|
||||
pkg: grunt.file.readJSON('package.json'),
|
||||
|
||||
eslint: {
|
||||
target: config.js.all,
|
||||
},
|
||||
|
||||
});
|
||||
|
||||
grunt.loadNpmTasks('grunt-eslint');
|
||||
|
||||
grunt.registerTask('standards', [ 'eslint' ]);
|
||||
grunt.registerTask('default', [ 'standards' ]);
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue