filesafe/.eslintrc.js

21 lines
287 B
JavaScript
Raw Normal View History

module.exports = {
2020-10-30 15:54:02 +00:00
root: true,
parserOptions: {
ecmaVersion: 9 // 2018
},
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: {
'no-throw-literal': 0,
'object-shorthand': [
'error',
'always'
],
'node/no-callback-literal': 0
}
}