mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-14 08:26:22 +00:00
26 lines
360 B
JavaScript
26 lines
360 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
ecmaVersion: 9 // 2018
|
|
},
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
'standard'
|
|
],
|
|
rules: {
|
|
curly: [
|
|
'error',
|
|
'multi',
|
|
'consistent'
|
|
],
|
|
'no-throw-literal': 0,
|
|
'object-shorthand': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'standard/no-callback-literal': 0
|
|
}
|
|
}
|