Skip to content

Instantly share code, notes, and snippets.

@arthurariza
Last active April 7, 2022 02:24
Show Gist options
  • Save arthurariza/f0e7765880b28413ef9f0af6386020bd to your computer and use it in GitHub Desktop.
Save arthurariza/f0e7765880b28413ef9f0af6386020bd to your computer and use it in GitHub Desktop.
{
"editor.fontLigatures": true,
"editor.semanticHighlighting.enabled": true,
"editor.linkedEditing": true,
"editor.renderLineHighlight": "gutter",
"editor.parameterHints.enabled": false,
"editor.renderWhitespace": "none",
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"javascript.suggest.autoImports": true,
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.suggest.autoImports": true,
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"erb": "html",
"ruby": "html"
},
"files.associations": {
"*.html.erb": "html"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"breadcrumbs.enabled": false,
"workbench.editor.enablePreview": false,
// Rubocop
"[ruby]": {
"editor.defaultFormatter": "misogi.ruby-rubocop"
},
"ruby.rubocop.executePath": "/Users/arthur/.rbenv/shims/",
"ruby.rubocop.onSave": true,
"bracket-pair-colorizer-2.depreciation-notice": false,
"editor.tabSize": 2,
"editor.fontSize": 14,
"solargraph.commandPath": "/Users/arthur/.rbenv/shims/solargraph",
"workbench.statusBar.visible": false,
"elixirLS.dialyzerEnabled": false,
"elixirLS.suggestSpecs": false,
"workbench.colorTheme": "GitHub Dark"
}
@arthurariza
Copy link
Author

VS Code Settings

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