filesafe/.eslintrc.js
2020-10-30 22:54:02 +07:00

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
}
}