mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-12 23:46:22 +00:00
19 lines
225 B
JavaScript
19 lines
225 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
ecmaVersion: 9 // 2018
|
|
},
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
'standard'
|
|
],
|
|
rules: {
|
|
'object-shorthand': [
|
|
'error',
|
|
'always'
|
|
]
|
|
}
|
|
}
|