filesafe/.eslintrc.js
Bobby 936ce5afed
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.
2022-06-04 03:49:54 +07:00

19 lines
226 B
JavaScript

module.exports = {
root: true,
parserOptions: {
ecmaVersion: 10 // 2019
},
env: {
node: true
},
extends: [
'standard'
],
rules: {
'object-shorthand': [
'error',
'always'
]
}
}