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