25 lines
390 B
JavaScript
25 lines
390 B
JavaScript
module.exports = {
|
|
env: {
|
|
es2021: true,
|
|
node: true
|
|
},
|
|
extends: ['standard'],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module'
|
|
},
|
|
globals: {
|
|
Bot: true,
|
|
redis: true,
|
|
logger: true,
|
|
plugin: true,
|
|
Renderer: true,
|
|
segment: true
|
|
},
|
|
rules: {
|
|
'eqeqeq': ['off'],
|
|
'prefer-const': ['off'],
|
|
'arrow-body-style': 'off'
|
|
}
|
|
}
|