* switch from custom eslint config to standard + prettier * fix new standard eslint violations * add editorconfig file * auto-fix all other violations * update lint yarn script * remove jshint comment
15 lines
227 B
JavaScript
15 lines
227 B
JavaScript
module.exports = {
|
|
source: {
|
|
files: [
|
|
'src/**/*.js',
|
|
'grunt/**/*.js',
|
|
'test/unit/**/*.js',
|
|
'Gruntfile.js',
|
|
],
|
|
tasks: ['mochacov:unit'],
|
|
options: {
|
|
interrupt: true,
|
|
},
|
|
},
|
|
};
|