13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
toolchain: {
|
|
src: ['.eslintrc.json', 'package.json', 'bower.json'],
|
|
options: {
|
|
formatter: 'prose',
|
|
reporter: 'jslint',
|
|
indent: 2
|
|
}
|
|
}
|
|
};
|