filesafe/.eslintrc.js

26 lines
360 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: {
curly: [
'error',
'multi',
'consistent'
],
2020-10-30 15:54:02 +00:00
'no-throw-literal': 0,
'object-shorthand': [
'error',
'always'
],
2020-10-30 15:54:02 +00:00
'standard/no-callback-literal': 0
}
}