Fix lint task - paths in eslintrc are relative to cwd not eslintrc file

This commit is contained in:
Ben Gotow 2019-09-23 13:45:59 -05:00
parent bf389079ac
commit 6608d37a73

View file

@ -7,6 +7,9 @@ module.exports = grunt => {
options: { options: {
ignore: false, ignore: false,
configFile: '../.eslintrc', configFile: '../.eslintrc',
parserOptions: {
project: './tsconfig.json',
},
}, },
target: grunt.config('source:es6'), target: grunt.config('source:es6'),
}, },