Skip to content

Commit

Permalink
Merge branch 'master' into abus
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilDragonfiend committed Jun 8, 2023
2 parents 931495f + 0540148 commit 6afc306
Show file tree
Hide file tree
Showing 679 changed files with 35,990 additions and 34,837 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# http://editorconfig.org
root = true

[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
Expand Down
4 changes: 3 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"recommendations": [
"Goonstation.goonstation-extpack",
"arcanis.vscode-zipfs",
"github.vscode-pull-request-github"
"github.vscode-pull-request-github",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode"
]
}
20 changes: 10 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker",
"preLaunchTask": "Build All",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
}
]
"version": "0.2.0",
"configurations": [
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker",
"preLaunchTask": "Build All",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
}
]
}
32 changes: 25 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"eslint.nodePath": "./tgui/.yarn/sdks",
"eslint.workingDirectories": [
"./tgui"
],
"eslint.workingDirectories": ["./tgui"],
"prettier.prettierPath": "./tgui/.yarn/sdks/prettier/index.js",
"typescript.tsdk": "./tgui/.yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"search.exclude": {
Expand All @@ -17,14 +16,33 @@
"gitlens.advanced.blame.customArguments": ["-w"],
"tgstationTestExplorer.project.resultsType": "json",
"tgstationTestExplorer.project.DMEName": "beestation.dme",
"tgstationTestExplorer.project.defines": ["#define UNIT_TESTS", "#define CBT"],
"tgstationTestExplorer.project.defines": [
"#define UNIT_TESTS",
"#define CBT"
],
"[javascript]": {
"editor.rulers": [80]
"editor.rulers": [80],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.rulers": [80],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescript]": {
"editor.rulers": [80]
"editor.rulers": [80],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.rulers": [80],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[scss]": {
"editor.rulers": [80]
"editor.rulers": [80],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
}
40 changes: 8 additions & 32 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"problemMatcher": ["$dreammaker", "$tsc", "$eslint-stylish"],
"group": {
"kind": "build",
"isDefault": true
Expand All @@ -27,9 +23,7 @@
{
"type": "dreammaker",
"dme": "beestation.dme",
"problemMatcher": [
"$dreammaker"
],
"problemMatcher": ["$dreammaker"],
"group": "build",
"label": "dm: build - beestation.dme"
},
Expand All @@ -39,10 +33,7 @@
"windows": {
"command": ".\\bin\\test.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"problemMatcher": ["$tsc", "$eslint-stylish"],
"group": "build",
"label": "Run All Tests"
},
Expand All @@ -52,10 +43,7 @@
"windows": {
"command": ".\\bin\\temp-fast-test.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"problemMatcher": ["$tsc", "$eslint-stylish"],
"group": "build",
"label": "dm: find hard deletes"
},
Expand All @@ -70,10 +58,7 @@
"windows": {
"command": ".\\bin\\tgui-build.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"problemMatcher": ["$tsc", "$eslint-stylish"],
"group": "build",
"label": "tgui: build"
},
Expand All @@ -83,10 +68,7 @@
"windows": {
"command": ".\\bin\\tgui-dev.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"problemMatcher": ["$tsc", "$eslint-stylish"],
"group": "build",
"label": "tgui: dev server"
},
Expand All @@ -96,10 +78,7 @@
"windows": {
"command": ".\\bin\\tgui-bench.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"problemMatcher": ["$tsc", "$eslint-stylish"],
"group": "build",
"label": "tgui: bench"
},
Expand All @@ -109,10 +88,7 @@
"windows": {
"command": ".\\bin\\tgui-sonar.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"problemMatcher": ["$tsc", "$eslint-stylish"],
"group": "build",
"label": "tgui: sonar"
}
Expand Down
Loading

0 comments on commit 6afc306

Please sign in to comment.