Skip to content

Instantly share code, notes, and snippets.

@SujalShah3234
Created October 13, 2022 06:51
Show Gist options
  • Save SujalShah3234/c14f3fd15517f165c204fbef6aacc871 to your computer and use it in GitHub Desktop.
Save SujalShah3234/c14f3fd15517f165c204fbef6aacc871 to your computer and use it in GitHub Desktop.
My VSCode settings I use for my every projects πŸš€
{
"[javascript][typescript][javascriptreact][typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[json][html][css][scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"css.lint.duplicateProperties": "warning",
"css.lint.emptyRules": "warning",
"debug.javascript.defaultRuntimeExecutable": {
"pwa-node": "node"
},
"diffEditor.ignoreTrimWhitespace": false,
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.detectIndentation": false,
"editor.fontFamily": "'Cascadia Mono', 'Fira Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": false,
"editor.guides.bracketPairs": "active",
"editor.hover.enabled": true,
"editor.inlineSuggest.enabled": true,
"editor.insertSpaces": true,
"editor.linkedEditing": true,
"editor.renderWhitespace": "all",
"editor.smoothScrolling": true,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"eslint.alwaysShowStatus": true,
"eslint.codeActionsOnSave.mode": "all",
"eslint.enable": true,
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"eslint.options": {
"ignore": false
},
"eslint.run": "onSave",
"explorer.sortOrder": "type",
"extensions.ignoreRecommendations": false,
"files.autoSave": "off",
"files.eol": "\n",
"javascript.preferences.quoteStyle": "single",
"javascript.updateImportsOnFileMove.enabled": "always",
"less.lint.duplicateProperties": "warning",
"less.lint.emptyRules": "warning",
"prettier.singleQuote": true,
"scss.lint.duplicateProperties": "warning",
"scss.lint.emptyRules": "warning",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.profiles.windows": {
"Command Prompt": {
"args": [],
"icon": "terminal-cmd",
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
]
},
"Git Bash": {
"source": "Git Bash"
},
"PowerShell": {
"icon": "terminal-powershell",
"source": "PowerShell"
},
"Ubuntu (WSL)": {
"args": [
"-d",
"Ubuntu"
],
"path": "C:\\WINDOWS\\System32\\wsl.exe"
}
},
"terminal.integrated.shellIntegration.enabled": true,
"terminal.integrated.smoothScrolling": true,
"window.zoomLevel": 1,
"workbench.editor.highlightModifiedTabs": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none"
}
@SujalShah3234
Copy link
Author

Contributors ❀️: @vishal-rathod-07

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment