my-bitburner/.vscode/workspace.code-workspace

27 lines
565 B
Plaintext
Raw Normal View History

2021-12-24 03:21:18 +09:00
{
"folders": [{
"path": ".."
}],
"settings": {
// Linter Settings
"typescript.validate.enable": false,
"javascript.validate.enable": false,
"eslint.validate": ["typescript", "typescriptreact"],
"eslint.workingDirectories": ["./src"],
"editor.codeActionsOnSave": {"source.fixAll.eslint": true},
// Bitburner Extension Settings
"bitburner.scriptRoot": "./dist/",
// Autosave Settings
"files.autoSave": "off",
// Autosnippet settings
"autoSnippet.snippets": [
{
"pattern": "**/*.ts",
"snippet": "ns-template"
},
],
}
}