Skip to content

Instantly share code, notes, and snippets.

@leonardobrito
Last active May 10, 2022 15:55
Show Gist options
  • Select an option

  • Save leonardobrito/25d3788e243a66d1e671e90203e9d902 to your computer and use it in GitHub Desktop.

Select an option

Save leonardobrito/25d3788e243a66d1e671e90203e9d902 to your computer and use it in GitHub Desktop.
Vscode configs
{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"react"
],
"editor.tabSize": 2,
"editor.rulers": [
80,
120
],
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"security.workspace.trust.untrustedFiles": "open",
"diffEditor.ignoreTrimWhitespace": false,
"redhat.telemetry.enabled": false,
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment