Restore JSON linting

This commit is contained in:
Ray Schamp 2018-01-30 10:36:08 -05:00
parent 590f505a61
commit dba366815d
3 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,4 @@
module.exports = {
extends: ['scratch', 'scratch/node']
extends: ['scratch', 'scratch/node'],
plugins: ['json']
};

View file

@ -55,7 +55,7 @@ test:
@make tap
lint:
$(ESLINT) . --ext .js,.jsx
$(ESLINT) . --ext .js,.jsx,.json
$(SASSLINT) ./src/*.scss
$(SASSLINT) ./src/**/*.scss

View file

@ -6,5 +6,6 @@ module.exports = {
},
globals: {
process: true
}
},
plugins: ['json']
};