Created
October 7, 2018 16:37
-
-
Save SakiiR/49bb86a4a0b3408d60c3136a19c81d60 to your computer and use it in GitHub Desktop.
ESLINT/Prettier vscode config
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
{ | |
"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