Files
quantconnect--lean/.vscode/settings.json
T
Alexandre Catarino 0c4a121371
Regression Tests / build (push) Has been cancelled
Report Generator Tests / build (push) Has been cancelled
Benchmarks / build (push) Has been cancelled
API Tests / build (push) Has been cancelled
Syntax Tests / build (push) Has been cancelled
Build & Test Lean / build (push) Has been cancelled
Research Regression Tests / build (push) Has been cancelled
Python Virtual Environments / build (push) Has been cancelled
Updates .vscode Environment (#9317)
* Updates .vscode Environment

* Removes VS Code Intellicode

Deprecated. Built-in Roslyn completions are enough or users can add GitHub.copilot.
2026-03-09 18:02:29 -04:00

28 lines
708 B
JSON

{
"files.eol": "\n",
"files.exclude": {
"**/bin": true,
"**/obj": true,
"**/.git": true
},
"search.exclude": {
"**/bin": true,
"**/obj": true
},
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.enableEditorConfigSupport": true,
"dotnet.defaultSolution": "QuantConnect.Lean.sln",
"editor.formatOnSave": true,
"editor.rulers": [
150
],
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp",
"editor.tabSize": 4,
"editor.insertSpaces": true
},
"python.analysis.extraPaths": [
"./Algorithm.Python",
"/opt/miniconda3/lib/python3.11/site-packages",
]
}