Skip to content

Instantly share code, notes, and snippets.

@jorgeruvalcaba
Last active March 13, 2024 05:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jorgeruvalcaba/2d267f1f55f29ed75b2f7dc657a1f562 to your computer and use it in GitHub Desktop.
Save jorgeruvalcaba/2d267f1f55f29ed75b2f7dc657a1f562 to your computer and use it in GitHub Desktop.
My current vscode settings based on Kent C Dodds's
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.detectIndentation": true,
"editor.lightbulb.enabled": false,
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": false,
"editor.rulers": [80],
"editor.snippetSuggestions": "top",
"editor.wordBasedSuggestions": false,
"editor.suggest.localityBonus": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "on",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.showKeywords": false
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.showKeywords": false
},
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.hover.enabled": true,
"editor.renderWhitespace": "boundary",
"editor.glyphMargin": false,
"editor.folding": true,
"files.exclude": {
"USE_GITIGNORE": true
},
"files.associations": {
"*.md": "mdx"
},
"files.defaultLanguage": "{activeEditorLanguage}",
"javascript.suggest.autoImports": true,
"javascript.validate.enable": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/build": true,
"**/.build": true,
"**/.gh-pages": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"eslint.options": {
"overrideConfigFile": "/Users/jorge/.eslintrc.json",
"overrideConfig": {
"env": {
"browser": true,
"jest": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-debugger": "off"
}
}
},
"terminal.integrated.profiles.osx": {
"zsh (login)": {
"path": "zsh",
"args": ["-l"]
}
},
"terminal.integrated.scrollback": 10000,
"explorer.openEditors.visible": 0,
"editor.lineNumbers": "on",
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
"workbench.panel.defaultLocation": "right",
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": false,
"workbench.editor.limit.value": 18,
"debug.javascript.codelens.npmScripts": "never",
"breadcrumbs.enabled": true,
"npm.runSilent": true,
"explorer.confirmDragAndDrop": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"window.zoomLevel": 0.5,
"editor.minimap.enabled": false,
"spellright.language": ["en"],
"spellright.documentTypes": ["markdown", "plaintext", "mdx"],
"spellright.parserByClass": {
"mdx": {
"parser": "markdown"
}
},
"editor.cursorSmoothCaretAnimation": true,
"editor.smoothScrolling": true,
"typescript.suggest.autoImports": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.packageManager": "npm",
"npm.packageManager": "npm",
"prettier.bracketSpacing": false,
"prettier.proseWrap": "always",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.arrowParens": "avoid",
"prettier.useEditorConfig": false,
"editor.tokenColorCustomizations": {
"textMateRules": []
},
"editor.bracketPairColorization.enabled": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"terminal.integrated.fontFamily": "Fira Code, Menlo, Monaco, Courier New, monospace",
"terminal.integrated.fontSize": 11,
"terminal.external.osxExec": "Hyper.app",
"security.workspace.trust.untrustedFiles": "open",
"editor.accessibilitySupport": "off"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment