first commit

This commit is contained in:
PC-202306242200\Administrator
2026-03-28 23:15:40 +08:00
commit 10ca82f012
157 changed files with 159116 additions and 0 deletions

42
tslint.json Normal file
View File

@@ -0,0 +1,42 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"one-line": false,
"no-empty": false,
"no-console": false,
"indent": [true, "tabs"],
"object-literal-shorthand": false,
"quotemark": [true, "single"],
"prefer-const": false,
"eofline": false,
"max-line-length": false,
"no-trailing-whitespace": false,
"ordered-imports": false,
"import-spacing": false,
"trailing-comma": false,
"curly": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"variable-name": false,
"typedef": [
true,
"call-signature",
"parameter",
"property-declaration",
"variable-declaration-ignore-function",
"member-variable-declaration",
"object-destructuring",
"array-destructuring"
]
},
"linterOptions": {
"exclude": [
"build"
]
},
"rulesDirectory": []
}