mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-23 03:21:33 +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: 7, // 2016
|
|
sourceType: 'script'
|
|
},
|
|
env: {
|
|
browser: true
|
|
},
|
|
extends: [
|
|
'standard',
|
|
'plugin:compat/recommended'
|
|
],
|
|
rules: {
|
|
'object-shorthand': [
|
|
'error',
|
|
'always'
|
|
]
|
|
}
|
|
}
|