fix: bump eslint ecmaVersion to 10 (ES2019)

according to https://node.green/#ES2019, since Node 12.4.0+ already have
100% support of ES2019 features.
This commit is contained in:
Bobby 2022-06-04 03:49:54 +07:00
parent a43eeea00a
commit 936ce5afed
No known key found for this signature in database
GPG Key ID: 941839794CBF5A09
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 9 // 2018
ecmaVersion: 10 // 2019
},
env: {
node: true