Last active
April 29, 2018 03:20
-
-
Save maxtortime/769757843d28930b63511ffd21e36aa6 to your computer and use it in GitHub Desktop.
Adjust eslint-plugin-vue
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
{ | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.detectIndentation": false, | |
"eslint.enable": true, | |
"files.trimTrailingWhitespace": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.DS_Store": true, | |
"**/node_modules": true, | |
"**/.idea": true, | |
"**/.vscode": false, | |
"**/yarn.lock": true, | |
"**/tmp": true | |
}, | |
"eslint.validate": [ | |
"javascript", | |
{"autoFix": true, "language": "vue"}, | |
"html" | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment