Skip to content

Instantly share code, notes, and snippets.

@phungnc
Created March 28, 2020 23:41
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 phungnc/ecb5fdb0668d01491359240bef36335c to your computer and use it in GitHub Desktop.
Save phungnc/ecb5fdb0668d01491359240bef36335c to your computer and use it in GitHub Desktop.
vscode setting
{
"window.zoomLevel": 2,
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"editor.minimap.enabled": false,
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"git.confirmSync": false,
"extensions.ignoreRecommendations": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.implicitProjectConfig.experimentalDecorators": true,
"editor.suggestSelection": "first",
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"html.format.wrapLineLength": 0,
"javascript.validate.enable": false,
"dart.flutterSdkPath": "/Users/phung/flutter",
"html.format.endWithNewline": true,
"html.format.indentInnerHtml": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.tabSize": 2,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"autoimport.filesToScan": "**/*.{js,ts,tsx}",
"autoimport.showNotifications": true,
"eslint.alwaysShowStatus": true,
"eslint.autoFixOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"dart.openDevTools": "flutter",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"dart.debugExternalLibraries": true,
"dart.debugSdkLibraries": false,
"editor.fontSize": 14,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment