初始化

This commit is contained in:
2025-08-21 10:43:04 +08:00
commit 29a79b1c6b
68 changed files with 13314 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
module.exports = {
env: {
es2021: true,
node: true,
},
extends: ['standard'],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
rules: {
curly: 'off',
camelcase: 'off',
'no-case-declarations': 'off',
semi: ['error', 'always'],
'comma-dangle': ['error', 'only-multiline'],
'space-before-function-paren': 'off',
'no-tabs': 'off',
indent: 'off',
eqeqeq: 'off',
'no-async-promise-executor': 'off',
'no-control-regex': 'off',
'prefer-promise-reject-errors': 'off',
},
};