kalvn logo kalvn

Ma configuration VS Code

Elle ne vous sera probablement pas très utile mais je la conserve ici pour pouvoir la réutiliser facilement.

Il s'agit du fichier settings.json que vous pouvez éditer en utilisant le raccourci CTRL+SHIFT+P et en tapant "Preferences: Open User Settings (JSON)".

Je précise que j'utilise VS Code sur Windows.

settings.json
{
  "html.format.wrapLineLength": 0,
  "terminal.integrated.defaultProfile.windows": "Git Bash",
  "emmet.syntaxProfiles": {
    "vue": "html",
    "vue-html": "html"
  },
  "emmet.includeLanguages": {
    "vue": "html",
    "vue-html": "html"
  },
  "editor.renderControlCharacters": false,
  "telemetry.telemetryLevel": "off",
  "explorer.confirmDelete": false,
  "git.path": "C:\\Program Files\\Git\\mingw64\\bin\\git.exe",
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
  "git-graph.dialog.merge.noFastForward": false,
  "intelephense.environment.phpVersion": "8.2.7",
  "cSpell.language": "en,fr",
  "debug.javascript.autoAttachFilter": "disabled",
  "git.replaceTagsWhenPull": true,
  "cSpell.languageSettings": [],
  "cSpell.enabledFileTypes": {
    "json": false,
    "javascript": false,
    "typescript": false,
    "vue": false
  },
  "eslint.useFlatConfig": true,
  "workbench.secondarySideBar.defaultVisibility": "hidden",
  "[dockercompose]": {
    "editor.insertSpaces": true,
    "editor.tabSize": 2,
    "editor.autoIndent": "advanced",
    "editor.quickSuggestions": {
      "other": true,
      "comments": false,
      "strings": true
    },
    "editor.defaultFormatter": "redhat.vscode-yaml"
  },
  "[github-actions-workflow]": {
    "editor.defaultFormatter": "redhat.vscode-yaml"
  }
}