Skip to content

Instantly share code, notes, and snippets.

@brinobruno
Last active March 22, 2023 18:29
Show Gist options
  • Save brinobruno/38c0a9bfcaea18d0c40e791f0affb797 to your computer and use it in GitHub Desktop.
Save brinobruno/38c0a9bfcaea18d0c40e791f0affb797 to your computer and use it in GitHub Desktop.
settings.json
{
// VSCode
"workbench.startupEditor": "none",
"breadcrumbs.enabled" : true,
// Editor
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 17,
"editor.lineHeight": 26,
"editor.tabSize": 2,
"editor.rulers": [
80,
120
],
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"workbench.editor.labelFormat": "short",
// Terminal
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.fontSize": 15,
"terminal.integrated.fontWeight": "bold",
// Lint
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"eslint.validate": true
// source.organizeImports: true
},
"editor.formatOnPaste": false,
"editor.renderLineHighlight" : "gutter",
"editor.cursorStyle": "line",
"editor.cursorBlinking": "smooth",
"editor.stickyScroll.enabled": true,
"editor.smoothScrolling": true,
// Visual, themes and icons
"window.zoomLevel": 0.5, // "window.zoomLevel": 0 or 1 also fine,
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"workbench.tree.indent": 10,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
// File explorer
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
// Emmet
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// Files and directories
"files.autoSave": "onFocusChange",
// JavaScript
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
// Typescript
"typescript.suggest.autoImports": true,
// Tabnine
"tabnine.experimentalAutoImports": true,
}
@brinobruno
Copy link
Author

Update gist

@brinobruno
Copy link
Author

Update gist to add ESLint validate

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