This commit is contained in:
你的名字
2025-07-14 10:22:40 +08:00
commit 0483b4b364
1388 changed files with 219353 additions and 0 deletions

17
nodejs/node_modules/node-schedule/.eslintrc generated vendored Executable file
View File

@ -0,0 +1,17 @@
{
"env": {
"node": true,
"es6": true
},
"rules": {
"eqeqeq": ["error", "smart"],
"indent": ["error", 2, { "SwitchCase": 1 }],
"no-constant-condition": "off",
"no-redeclare": "warn",
"no-underscore-dangle": "off",
"no-use-before-define": ["warn","nofunc"],
"quotes": ["error", "single"],
"space-before-blocks": "error",
"strict": "error"
}
}