mirror of
https://github.com/Le-niao/Yunzai-Bot.git
synced 2025-01-09 20:06:40 +08:00
24 lines
326 B
JavaScript
24 lines
326 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
|
|
},
|
|
rules: {
|
|
eqeqeq: ['off'],
|
|
'prefer-const': ['off']
|
|
}
|
|
}
|