Last active
May 10, 2022 15:55
-
-
Save leonardobrito/25d3788e243a66d1e671e90203e9d902 to your computer and use it in GitHub Desktop.
Vscode configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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