Skip to content

Commit

Permalink
Added VS Code privacy and code style settings (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
pasabanov authored Oct 4, 2024
1 parent e439e9b commit 4fe913f
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
!/.idea/vcs.xml

/.vscode/*
!/.vscode/settings.json

target/
build/
Expand Down
40 changes: 40 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
// Warning!
// Some of these settings only take effect if added to the user's `settings.json`
// and will not work in the workspace `settings.json`.
// It is recommended to copy the privacy-related settings into your user's `settings.json`.

// PRIVACY
// Telemetry
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"telemetry.telemetryLevel": "off",
"editor.experimental.treeSitterTelemetry": false,
"autotools.telemetry": false,
"dotnetAcquisitionExtension.enableTelemetry": false,
"julia.enableTelemetry": false,
"MATLAB.telemetry": false,
"redhat.telemetry.enabled": false,
// Experiments
"workbench.enableExperiments": false,
"jupyter.experiments.enabled": false,
"python.experiments.enabled": false,
// Other
"workbench.remoteIndicator.showExtensionRecommendations": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"update.mode": "manual",
"update.showReleaseNotes": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"extensions.ignoreRecommendations": true,
"yaml.extension.recommendations": false,

// CODE STYLE
// Indentation
"editor.detectIndentation": true,
"editor.indentSize": "tabSize",
"editor.insertSpaces": false,
// Final new line
"files.insertFinalNewline": false,
"files.trimFinalNewlines": true,
}

0 comments on commit 4fe913f

Please sign in to comment.