safe.b68dev.xyz/.eslintrc.js

19 lines
226 B
JavaScript
Raw Normal View History

module.exports = {
2020-10-30 15:54:02 +00:00
root: true,
parserOptions: {
ecmaVersion: 10 // 2019
},
2020-10-30 15:54:02 +00:00
env: {
node: true
},
2020-10-30 15:54:02 +00:00
extends: [
'standard'
],
2020-10-30 15:54:02 +00:00
rules: {
'object-shorthand': [
'error',
'always'
]
}
}