22 lines
564 B
JSON
22 lines
564 B
JSON
|
{
|
||
|
// 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"
|
||
|
},
|
||
|
],
|
||
|
}
|