forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into translate
- Loading branch information
Showing
211 changed files
with
1,489 additions
and
915 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "byond", | ||
"request": "launch", | ||
"name": "Build & DS Debug", | ||
"preLaunchTask": "dm: build - ${command:CurrentDME}", | ||
"dmb": "${workspaceFolder}/${command:CurrentDMB}" | ||
}, | ||
{ | ||
"type": "byond", | ||
"request": "launch", | ||
"name": "DS Debug", | ||
"dmb": "${workspaceFolder}/${command:CurrentDMB}" | ||
} | ||
] | ||
} |
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,35 +1,53 @@ | ||
{ | ||
"gitlens.advanced.blame.customArguments": [ | ||
"--ignore-revs-file", | ||
"${workspaceRoot}/.git-blame-ignore-revs" | ||
], | ||
// ESLint settings: | ||
"eslint.workingDirectories": ["tgui/"], | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"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 | ||
}, | ||
"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" } | ||
], | ||
"eslint.format.enable": true, | ||
|
||
"[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 | ||
}, | ||
"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
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.