Skip to content

Commit 4b6f2d9

Browse files
Sync VS Code Config
Configure ES Lint behavior. Update GitHub Copilot disable command to be more inclusive. Add todo tree tags. Add Dev Skim. Add local typescript directive.
1 parent 3470dc4 commit 4b6f2d9

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

ObjectID-Converter.code-workspace

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,38 @@
5151
"files.trimFinalNewlines": true,
5252
"yaml.format.singleQuote": true,
5353
"powershell.codeFormatting.useConstantStrings": true,
54-
"github.copilot.editor.enableAutoCompletions": false
54+
"typescript.tsdk": "node_modules\\typescript\\lib",
55+
"eslint.rules.customizations": [
56+
{
57+
"rule": "*",
58+
"severity": "warn"
59+
}
60+
],
61+
"github.copilot.enable": {
62+
"*": false
63+
},
64+
"github.copilot.chat.agent.autoFix": false,
65+
"github.copilot.chat.agent.runTasks": false,
66+
"github.copilot.editor.enableCodeActions": false,
67+
"todo-tree.general.tags": [
68+
"BUG",
69+
"HACK",
70+
"FIXME",
71+
"TODO",
72+
"XXX",
73+
"[ ]",
74+
"[x]",
75+
"* @todo"
76+
]
5577
},
5678
"extensions": {
5779
"recommendations": [
5880
"streetsidesoftware.code-spell-checker",
5981
"dbaeumer.vscode-eslint",
6082
"gruntfuggly.todo-tree",
6183
"PKief.material-icon-theme",
62-
"SocketSecurity.vscode-socket-security"
84+
"SocketSecurity.vscode-socket-security",
85+
"MS-CST-E.vscode-devskim"
6386
]
6487
}
6588
}

0 commit comments

Comments
 (0)