Skip to content

Instantly share code, notes, and snippets.

@abdul-alhasany
Created December 28, 2022 02:51
Show Gist options
  • Save abdul-alhasany/9a56f0226b9574ad086f248733046460 to your computer and use it in GitHub Desktop.
Save abdul-alhasany/9a56f0226b9574ad086f248733046460 to your computer and use it in GitHub Desktop.
My config files
{
"editor.cursorStyle": "line",
"editor.cursorBlinking": "smooth",
"easycompile.compile": {
"ignore": [
"sass",
"scss"
]
},
"editor.lineNumbers": "interval",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.git": true,
"**/tests": true,
"**/.vscode": true,
"**/out/**": true,
"package-lock.json": true,
"**/dist": true,
"**/build": true,
"**/coverage": true,
"**/docs": true,
},
"eslint.codeAction.showDocumentation": {
"enable": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"eslint.packageManager": "pnpm",
"editor.defaultFormatter": null,
"prettier.enable": false,
"cSpell.allowCompoundWords": true,
"cSpell.language": "en,en-US",
"files.eol": "\n",
"search.collapseResults": "alwaysExpand",
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.autoIndent": "advanced",
"git.showPushSuccessNotification": true,
"editor.snippetSuggestions": "bottom",
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": true,
"workbench.tree.indent": 20,
"files.trimTrailingWhitespace": true,
"explorer.openEditors.visible": 0,
"files.associations": {
"*.vue": "vue"
},
"tailwindCSS.emmetCompletions": true,
"css.validate": false,
"scss.validate": false,
"editor.codeLens": false,
"search.quickOpen.includeHistory": false,
"errorLens.errorColor": "rgb(199 76 102 / 10%)",
"errorLens.errorTextColor": "rgba(255,255,255,0.3)",
"errorLens.warningColor": "rgb(255 213 128 / 5%)",
"errorLens.warningTextColor": "rgba(255,255,255,0.3)",
"errorLens.infoColor": "rgba(0,200,0,0.1)",
"errorLens.infoTextColor": "rgba(240,240,240,0.3)",
"errorLens.hintColor": "rgba(20,140,140,0.1)",
"errorLens.hintTextColor": "rgba(255,255,255,0.3)"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment