Skip to content

Instantly share code, notes, and snippets.

@SakiiR
Created October 7, 2018 16:37
Show Gist options
  • Save SakiiR/49bb86a4a0b3408d60c3136a19c81d60 to your computer and use it in GitHub Desktop.
Save SakiiR/49bb86a4a0b3408d60c3136a19c81d60 to your computer and use it in GitHub Desktop.
ESLINT/Prettier vscode config
{
"vim.useSystemClipboard": true,
"window.zoomLevel": 1,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"eslint.options": {
"configFile": ".eslintrc.js"
},
"editor.formatOnSave": true,
// Enable/disable default JavaScript formatter (For Prettier)
"javascript.format.enable": false,
// Use 'prettier-eslint' instead of 'prettier'. Other settings will only be fallbacks in case they could not be inferred from eslint rules.
"prettier.eslintIntegration": true,
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment