Last active
August 30, 2022 20:53
-
-
Save Alexandre-cibot/ec33e2613e7aa0b355875809d655b35b to your computer and use it in GitHub Desktop.
VsCode preferences (06/2020)
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
{ | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true | |
}, | |
"editor.formatOnSave": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"vue" | |
], | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"path-intellisense.mappings": { | |
"@": "${workspaceRoot}", | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.multiCursorModifier": "ctrlCmd", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment