Skip to content

Commit 5b3145b

Browse files
committed
Re-release for Hub and some Cleanup.
Delete node_modules. Move to Biome formatter from SPT Server. Move to build system from recent ModExamples.
1 parent a4794d8 commit 5b3145b

4,327 files changed

Lines changed: 1613 additions & 1565345 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.buildignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/.buildignore
2+
/.DS_Store
3+
/.editorconfig
4+
/.eslintignore
5+
/.eslintrc.json
6+
/.git
7+
/.github
8+
/.gitignore
9+
/.gitlab
10+
/.nvmrc
11+
/.prettierrc
12+
/.vscode
13+
/build.mjs
14+
/dist
15+
/images
16+
/*.code-workspace
17+
/node_modules
18+
/package-lock.json
19+
/tsconfig.json
20+
/types
21+
/biome.jsonc

.eslintignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 98 deletions
This file was deleted.

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
build/
2-
2+
.DS_Store
3+
**/package-lock.json
4+
**/node_modules/
5+
**/dist/
6+
updateTypes.ps1
7+
NewTypes/

biome.jsonc

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
3+
"organizeImports": {
4+
"enabled": true
5+
},
6+
"files": {
7+
"ignore": [
8+
".editorconfig",
9+
".git/*",
10+
".pkg-cache/*",
11+
".vscode/*",
12+
"build/*",
13+
"node_modules/*",
14+
"obj/*",
15+
"out/*",
16+
"src/services/ModCompilerService.ts",
17+
"tests/__cache__/*",
18+
"tests/__coverage__/*",
19+
"types/*",
20+
"user/mods/*",
21+
"user/profiles/*",
22+
"assets/database/*"
23+
]
24+
},
25+
"linter": {
26+
"enabled": true,
27+
"rules": {
28+
"recommended": true,
29+
"style": {
30+
"useImportType": "off"
31+
}
32+
}
33+
},
34+
"formatter": {
35+
"enabled": true,
36+
"formatWithErrors": false,
37+
"ignore": [
38+
"**/.git",
39+
"**/.pkg-cache",
40+
"**/.vscode",
41+
"**/build",
42+
"**/node_modules",
43+
"**/types",
44+
"**/tests/__cache__",
45+
"**/tests/__coverage__",
46+
"**/.editorconfig"
47+
],
48+
"attributePosition": "auto",
49+
"indentStyle": "space",
50+
"indentWidth": 4,
51+
"lineWidth": 120,
52+
"lineEnding": "lf"
53+
},
54+
"javascript": {
55+
"formatter": {
56+
"arrowParentheses": "always",
57+
"bracketSameLine": false,
58+
"bracketSpacing": true,
59+
"jsxQuoteStyle": "double",
60+
"quoteProperties": "asNeeded",
61+
"semicolons": "always",
62+
"trailingCommas": "all"
63+
},
64+
"parser": {
65+
"unsafeParameterDecoratorsEnabled": true
66+
}
67+
},
68+
"json": {
69+
"formatter": {
70+
"trailingCommas": "none"
71+
}
72+
},
73+
"overrides": [
74+
{
75+
"include": ["tests/*"],
76+
"linter": {
77+
"rules": {
78+
"suspicious": {
79+
"noExplicitAny": "off"
80+
}
81+
}
82+
}
83+
}
84+
]
85+
}

build.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)