mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 07:56:23 +00:00
47dd512910
Sigh, why did you do this, past me..? Also fixed "Delete uploads by names".
21 lines
287 B
JavaScript
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
|
|
}
|
|
}
|