-
-
Notifications
You must be signed in to change notification settings - Fork 422
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into bullet
- Loading branch information
Showing
646 changed files
with
19,682 additions
and
15,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,5 @@ Thumbs.db | |
data/ | ||
cache/ | ||
cfg/ | ||
.vscode | ||
**/MapFXDrawer/*.png | ||
test_merge.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
// ESLint settings: | ||
"eslint.workingDirectories": ["tgui/"], | ||
"eslint.nodePath": "tgui/.yarn/sdks", | ||
"prettier.configPath": "tgui/.prettierrc.yml", | ||
"prettier.prettierPath": "tgui/.yarn/sdks/prettier/index.cjs", | ||
"typescript.tsdk": "tgui/.yarn/sdks/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true, | ||
"tgui/public/**/*": true | ||
}, | ||
"eslint.format.enable": true, | ||
"eslint.rules.customizations": [ | ||
// We really want to fail the CI builds on styling errors, | ||
// but it's better to show them as yellow squigglies in IDE | ||
// and thus differentiate from the red typescript ones which | ||
// are actually hard errors. | ||
{ "rule": "*", "severity": "warn" } | ||
], | ||
|
||
"[javascript]": { | ||
"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.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[scss]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
|
||
"editor.formatOnSave": true, | ||
"gitlens.advanced.blame.customArguments": [ | ||
"--ignore-revs-file", | ||
"${workspaceRoot}/.git-blame-ignore-revs" | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "dreammaker", | ||
"dme": "taucetistation.dme", | ||
"problemMatcher": [ | ||
"$dreammaker" | ||
], | ||
"group": "build", | ||
"label": "dm: build - taucetistation.dme" | ||
}, | ||
{ | ||
"type": "shell", | ||
"command": "tgui/bin/tgui-build", | ||
"windows": { | ||
"command": ".\\tgui\\bin\\tgui.bat" | ||
}, | ||
"problemMatcher": [ | ||
"$tsc", | ||
"$eslint-stylish" | ||
], | ||
"group": "build", | ||
"label": "tgui: build" | ||
}, | ||
{ | ||
"type": "shell", | ||
"command": "tgui/bin/tgui-dev-server", | ||
"windows": { | ||
"command": ".\\tgui\\bin\\tgui-dev-server.bat" | ||
}, | ||
"problemMatcher": [ | ||
"$tsc", | ||
"$eslint-stylish" | ||
], | ||
"group": "build", | ||
"label": "tgui: run dev server" | ||
} | ||
, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// A link given to ghost alice to follow bob | ||
#define FOLLOW_LINK(alice, bob) "<a href=?src=\ref[alice];track=\ref[bob]>(F)</a>" | ||
#define TURF_LINK(alice, turfy) "<a href=?src=\ref[alice];x=[turfy.x];y=[turfy.y];z=[turfy.z]>(T)</a>" | ||
#define FOLLOW_OR_TURF_LINK(alice, bob, turfy) "<a href=?src=\ref[alice];track=\ref[bob];x=[turfy.x];y=[turfy.y];z=[turfy.z]>(F)</a>" | ||
#define FOLLOW_LINK(alice, bob) "<a href=byond://?src=\ref[alice];track=\ref[bob]>(F)</a>" | ||
#define TURF_LINK(alice, turfy) "<a href=byond://?src=\ref[alice];x=[turfy.x];y=[turfy.y];z=[turfy.z]>(T)</a>" | ||
#define FOLLOW_OR_TURF_LINK(alice, bob, turfy) "<a href=byond://?src=\ref[alice];track=\ref[bob];x=[turfy.x];y=[turfy.y];z=[turfy.z]>(F)</a>" | ||
|
||
// Link for alice to help bob | ||
#define HELP_LINK(alice, bob) "<a href=?src=\ref[alice];help_other=\ref[bob]>Click here to help [bob].</a>" | ||
#define HELP_LINK(alice, bob) "<a href=byond://?src=\ref[alice];help_other=\ref[bob]>Click here to help [bob].</a>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.