filesafe/.eslintrc.js
2021-01-08 10:59:10 +07:00

19 lines
225 B
JavaScript

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