Created
November 22, 2021 06:14
-
-
Save akai/8ea2ed1976ea55baea63cfeb0aa4e997 to your computer and use it in GitHub Desktop.
vscode.settings
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.fontSize": 16, | |
"editor.fontFamily": "'Fira Code'", | |
"editor.tabSize": 2, | |
"editor.fontLigatures": true, | |
"editor.rulers": [ | |
80, | |
100 | |
], | |
"editor.accessibilitySupport": "off", | |
"editor.minimap.enabled": false, | |
"editor.snippetSuggestions": "top", | |
"editor.linkedEditing": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"[javascript]": { | |
// "editor.formatOnSave": true | |
}, | |
"[javascriptreact]": { | |
"editor.formatOnSave": true | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true | |
}, | |
"[typescriptreact]": { | |
"editor.formatOnSave": true | |
}, | |
"files.exclude": { | |
"**/dist": true, | |
"**/node_modules": true | |
}, | |
"files.watcherExclude": { | |
"**/dist/**": true | |
}, | |
"files.trimTrailingWhitespace": true, | |
"terminal.explorerKind": "external", | |
"terminal.external.osxExec": "iTerm.app", | |
"keyboard.touchbar.enabled": false, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.showSuggestionsAsSnippets": true, | |
"prettier.singleQuote": true, | |
"workbench.colorTheme": "GitHub Dark", | |
"workbench.startupEditor": "newUntitledFile", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"security.workspace.trust.untrustedFiles": "open" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment