Skip to content

Commit

Permalink
clean up .vscode/settings.json
Browse files Browse the repository at this point in the history
Remove settings based on personal DX preference.
Workspace settings take precedence over all others, so should be minimal and functional, not based on preference.
  • Loading branch information
Pwuts committed Jun 27, 2024
1 parent a77e1f0 commit e35b8b7
Showing 1 changed file with 5 additions and 26 deletions.
31 changes: 5 additions & 26 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
{
"editor.renderWhitespace": "all",
"editor.inlineSuggest.enabled": true,
"editor.occurrencesHighlight": "multiFile",

"files.autoSave": "afterDelay",

"git.autofetch": true,

"liveshare.accessibility.soundsEnabled": false,

"notebook.output.textLineLimit": 100,

"[python]": {
"editor.rulers": [90],
"editor.formatOnSave": true,
Expand All @@ -21,28 +9,19 @@
"editor.formatOnType": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.analysis.diagnosticSeverityOverrides": {},
"python.analysis.typeCheckingMode": "standard",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoSearchPaths": true,
"python.analysis.useLibraryCodeForTypes": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.autoFormatStrings": true,
"python.analysis.inlayHints.callArgumentNames": "partial",
"python.analysis.fixAll": [
"source.convertImportFormat",
"source.unusedImports"
"source.convertImportFormat"
],
"python.languageServer": "Pylance",
"python.missingPackage.severity": "Error",

"ruff.showNotifications": "always",
"remote.autoForwardPortsSource": "hybrid",
"terminal.integrated.scrollback": 100000,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.testing.pytestArgs": ["codex/tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,

"ruff.showNotifications": "always",
}

0 comments on commit e35b8b7

Please sign in to comment.