mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 07:56:23 +00:00
936ce5afed
according to https://node.green/#ES2019, since Node 12.4.0+ already have 100% support of ES2019 features.
19 lines
226 B
JavaScript
19 lines
226 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
ecmaVersion: 10 // 2019
|
|
},
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
'standard'
|
|
],
|
|
rules: {
|
|
'object-shorthand': [
|
|
'error',
|
|
'always'
|
|
]
|
|
}
|
|
}
|