filesafe/src/js/.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: 7, // 2016
sourceType: 'script'
},
env: {
browser: true
},
extends: [
'standard',
'plugin:compat/recommended'
],
rules: {
'object-shorthand': [
'error',
'always'
]
}
}