onnxruntime/.vscode/settings.json
Justin Chu d87d480857
Remove deprecated vscode settings (#18349)
### Description
Remove deprecated vscode settings. The python settings are deprecated
and will cause vscode to pop up with a warning.
2023-11-10 18:00:35 -08:00

24 lines
646 B
JSON

{
// Always remove trailing whitespaces
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.rulers": [
120
],
"[python]": {
"editor.tabSize": 4,
// Auto sort imports
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
},
// Enable Python linting and Pylance type checking
"python.analysis.typeCheckingMode": "basic",
"cpplint.lineLength": 120,
"cpplint.filters": [
"-build/include_subdir",
"-runtime/references"
]
}