mirror of
https://github.com/microsoft/AI-Red-Teaming-Playground-Labs.git
synced 2026-02-12 17:22:49 +00:00
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"prettier.enable": true,
|
|
"editor.formatOnType": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"[csharp]": {
|
|
"editor.defaultFormatter": "ms-dotnettools.csharp",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.guides.bracketPairs": "active",
|
|
"javascript.updateImportsOnFileMove.enabled": "always",
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/build": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
"eslint.enable": true,
|
|
"eslint.lintTask.enable": true,
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
],
|
|
"files.associations": {
|
|
"*.json": "jsonc"
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/Thumbs.db": true,
|
|
"**.lock": true,
|
|
},
|
|
"dotnet.defaultSolution": "CopilotChat.sln",
|
|
"editor.tabSize": 2,
|
|
"python.analysis.extraPaths": [
|
|
"./chat-score/webapi"
|
|
],
|
|
} |