Skip to content

Instantly share code, notes, and snippets.

@danielfnz
Created July 28, 2025 13:49
Show Gist options
  • Select an option

  • Save danielfnz/a27fbf810da9329363b6d35933b3c594 to your computer and use it in GitHub Desktop.

Select an option

Save danielfnz/a27fbf810da9329363b6d35933b3c594 to your computer and use it in GitHub Desktop.
settings.json
{
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit",
"source.sortMembers": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"eslint.enable": true,
"files.eol": "\n",
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tabSize": 2,
"javascript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterTypes.enabled": true,
"prettier.singleQuote": true,
"editor.guides.bracketPairs": "active",
"editor.bracketPairColorization.enabled": true,
"git.ignoreMissingGitWarning": true,
"typescript.updateImportsOnFileMove.enabled": "never",
"javascript.updateImportsOnFileMove.enabled": "never",
"html.format.wrapLineLength": 110,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment