Skip to content

Instantly share code, notes, and snippets.

@lamlv2305
Created March 20, 2020 04:02
Show Gist options
  • Save lamlv2305/009faafa042134cb4ba3601b7659db54 to your computer and use it in GitHub Desktop.
Save lamlv2305/009faafa042134cb4ba3601b7659db54 to your computer and use it in GitHub Desktop.
{
"files.associations": {
".eslintrc": "javascriptreact",
"./build/**": "plaintext",
"./public/az/**": "plaintext"
},
"editor.tabSize": 2,
"editor.suggestSelection": "first",
"editor.codeActionsOnSave": {
// For ESLint
"source.fixAll.eslint": true,
// For TSLint
"source.fixAll.tslint": true,
// For Stylelint
"source.fixAll.stylelint": true
},
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.jediEnabled": false,
"python.linting.pylintEnabled": true,
"python.dataScience.sendSelectionToInteractiveWindow": true,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"jshint.enable": false,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.jsxSingleQuote": false,
"prettier.singleQuote": true,
"explorer.sortOrder": "type",
"workbench.editor.enablePreview": false,
"workbench.iconTheme": "material-icon-theme",
"editor.renderFinalNewline": false,
"javascript.validate.enable": false,
"keyboard.dispatch": "keyCode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"window.zoomLevel": 0,
"eslint.migration.2_x": "off",
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment