sindresorhus / grunt-eslint

Validate files with ESLint
MIT License
200 stars 72 forks source link

Cannot read property 'ecmaFeatures' of undefined #159

Closed bonesoul closed 6 years ago

bonesoul commented 6 years ago

Getting

Parsing error: Cannot read property 'ecmaFeatures' of undefined

Tell us about your environment

my eslintrc

env:
  node: true
  es6: true
  jquery: false
  browser: false

extends:
  - eslint:recommended

rules:
  curly: off
sindresorhus commented 6 years ago

This is an issue with ESLint itself, not this plugin. https://www.google.com/search?q=Cannot+read+property+%27ecmaFeatures%27&oq=Cannot+read+property+%27ecmaFeatures%27&aqs=chrome..69i57j69i61.109j0j1&sourceid=chrome&ie=UTF-8

bonesoul commented 6 years ago

the thing is that i can run eslint all good from command line, but once i use the grunt-eslint i get the error.