Skip to content

Instantly share code, notes, and snippets.

@kyktommy
Created March 10, 2021 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyktommy/98fa4232f0094d199b829ec2d9068da5 to your computer and use it in GitHub Desktop.
Save kyktommy/98fa4232f0094d199b829ec2d9068da5 to your computer and use it in GitHub Desktop.
vscode json
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.fontLigatures": true,
"workbench.editor.enablePreview": false,
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.formatOnSave": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"diffEditor.ignoreTrimWhitespace": true,
"explorer.confirmDragAndDrop": false,
"git.enableSmartCommit": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"dart.debugExternalLibraries": true,
"dart.debugSdkLibraries": false,
"python.languageServer": "Pylance",
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment