Created
June 29, 2025 04:23
-
-
Save bhumit070/eecc5cede1bf30bcf388551b48b78624 to your computer and use it in GitHub Desktop.
Vscode Editor Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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