Skip to content

Instantly share code, notes, and snippets.

@bhumit070
Created June 29, 2025 04:23
Show Gist options
  • Save bhumit070/eecc5cede1bf30bcf388551b48b78624 to your computer and use it in GitHub Desktop.
Save bhumit070/eecc5cede1bf30bcf388551b48b78624 to your computer and use it in GitHub Desktop.
Vscode Editor Config
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.formatOnSave": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"[dockercompose]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"prettier.configPath": "./.config/.prettierrc",
"eslint.options": {
"overrideConfigFile": "./.config/eslint.config.mjs"
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
"explorer.fileNesting.patterns": {
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, bun.lock, .nvmrc",
".gitignore": ".gitignore, .dockerignore, .DS_Store",
".env": ".env, .env.example",
"setup.sh": "setup.sh, README.md"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment