filesafe/.eslintrc.js
Bobby Wibowo 47dd512910
Removed custom ESLint curly rule
Sigh, why did you do this, past me..?

Also fixed "Delete uploads by names".
2020-10-31 01:12:09 +07:00

21 lines
287 B
JavaScript

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