Created
October 18, 2019 20:58
-
-
Save simply-alliv/d897f984aeebb15a1bf139f3b5ca9b0c to your computer and use it in GitHub Desktop.
Standard settings of Prettier and ESLint for VSCode. Ember App configuration.
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
{ | |
"files.eol": "\n", | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": false | |
}, | |
"eslint.autoFixOnSave": true, | |
"eslint.alwaysShowStatus": true, | |
"prettier.disableLanguages": ["js"], | |
"eslint.validate": [ | |
"javascript", | |
{ "language": "typescript", "autoFix": true } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment