mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
No player-facing changes. Ports several PRs from tgstation, including: https://github.com/tgstation/tgstation/pull/66862 https://github.com/tgstation/tgstation/pull/80189 https://github.com/tgstation/tgstation/pull/90317 https://github.com/tgstation/tgstation/pull/91379 In addition, removes IntelliCode from the recommended extensions. This is deprecated, and we prefer not to force the replacement onto contributors. Contributors may individually choose to use this instead.
29 lines
927 B
JSON
29 lines
927 B
JSON
{
|
|
"eslint.nodePath": "./tgui/.yarn/sdks",
|
|
"eslint.workingDirectories": ["./tgui"],
|
|
"prettier.prettierPath": "./tgui/.yarn/sdks/prettier/index.cjs",
|
|
"typescript.tsdk": "./tgui/.yarn/sdks/typescript/lib",
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
"search.exclude": {
|
|
"**/.yarn": true,
|
|
"**/.pnp.*": true
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"editor.insertSpaces": false,
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"gitlens.advanced.blame.customArguments": ["-w"],
|
|
"[javascript][typescript][typescriptreact][javascriptreact][html][scss][css][json][jsonc][markdown][yaml]": {
|
|
"editor.rulers": [80],
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"workbench.editorAssociations": {
|
|
"*.dmi": "dmiEditor.dmiEditor"
|
|
},
|
|
"rust-analyzer.linkedProjects": ["rust/bapi/Cargo.toml"]
|
|
}
|