Skip to content

Commit

Permalink
fix: use ecmaVersion 2019 for now
Browse files Browse the repository at this point in the history
vue-eslint-parser 6.0.5 (which is depended on by eslint-plugin-vue
6.0.0 & 6.0.1) depends on espree 5.x, thus does not support ecmaVersion
2020.

This commit can be reverted once this PR vuejs/eslint-plugin-vue#985
gets merged and released.
  • Loading branch information
goldentroll committed Dec 5, 2019
1 parent f0461ea commit b3fccb6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
@@ -1,5 +1,8 @@
module.exports = {
extends: [
require.resolve('eslint-config-standard')
]
],
parserOptions: {
ecmaVersion: 2019
}
}

0 comments on commit b3fccb6

Please sign in to comment.