Last active
June 21, 2022 01:27
-
-
Save Gabao-Farias/567698040cbfc5a46a15db04c609e015 to your computer and use it in GitHub Desktop.
VSCode config linux
This file contains 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
{ | |
"workbench.colorTheme": "Dracula", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "'Fira Code', 'Nimbus Sans L', 'monospace'", | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 28, | |
"editor.fontSize": 14, | |
"editor.tabSize": 2, | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"[javascriptreact]": { | |
"editor.formatOnSave": false | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true | |
}, | |
"[typescriptreact]": { | |
"editor.formatOnSave": false | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"eslint.validate": ["javascript", "typescript"], | |
"material-icon-theme.folders.associations": { | |
"scenes": "views", | |
"stores": "redux-store", | |
"navigation": "routes", | |
"contexts": "global", | |
"types": "typescript", | |
"toasts": "event", | |
"string": "font", | |
"local": "private", | |
"global": "public", | |
"array": "mappings", | |
"migrations": "tools", | |
"repositories": "components", | |
"arduino": "android" | |
}, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"prettier.requireConfig": true, | |
"explorer.confirmDelete": false, | |
"editor.suggestSelection": "first", | |
"terminal.integrated.fontFamily": "monospace", | |
"files.exclude": { | |
"**/.git": false | |
}, | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": false, | |
"properties": false, | |
"typescript": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment