Closed adikari closed 5 years ago
'makeprg': 'eslint src/graphql/index.ts'
^ This seems to be the root of your of your problem, you're missing a -f compact
. This happens only if you have g:syntastic_javascript_eslint_generic
set to a true value. Don't do that if you're using the real eslint
.
awesome. that worked. Thank you @lcd047
I am using
typescript/eslint
checker and for some reason the error is not reported by Syntastic. When I check the debug message, I can see the expected error message in the output.Output from
mes
:Output of
SyntasticInfo
:I have a local
eslintrc.yml
where my eslint rules are defined.Thanks.