Skip to content

Commit b3fccb6

Browse files
committed
fix: use ecmaVersion 2019 for now
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.
1 parent f0461ea commit b3fccb6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module.exports = {
22
extends: [
33
require.resolve('eslint-config-standard')
4-
]
4+
],
5+
parserOptions: {
6+
ecmaVersion: 2019
7+
}
58
}

0 commit comments

Comments
 (0)