initial upload

This commit is contained in:
bietiaop 2024-07-08 13:13:22 +08:00
commit 1c65f10e24
58 changed files with 2533 additions and 0 deletions

17
.eslintrc.cjs Normal file
View file

@ -0,0 +1,17 @@
module.exports = {
env: {
es2021: true,
node: true,
},
extends: [
'standard',
'eslint:recommended',
'standard',
'plugin:prettier/recommended',
],
rules: {
eqeqeq: ['off'],
'prefer-const': ['off'],
'arrow-body-style': 'off',
},
};