Add jsonlint dependency.

This commit is contained in:
Alexis Lahouze
2016-10-14 18:18:48 +02:00
parent 727b2fc313
commit dbef4039bd
3 changed files with 13 additions and 20 deletions

12
grunt-config/jsonlint.js Normal file
View File

@ -0,0 +1,12 @@
'use strict';
module.exports = {
toolchain: {
src: ['.eslintrc.json', 'package.json', 'bower.json'],
options: {
formatter: 'prose',
reporter: 'jslint',
indent: 2
}
}
};