Skip to content

Instantly share code, notes, and snippets.

@simply-alliv
Created October 18, 2019 20:58
Show Gist options
  • Save simply-alliv/d897f984aeebb15a1bf139f3b5ca9b0c to your computer and use it in GitHub Desktop.
Save simply-alliv/d897f984aeebb15a1bf139f3b5ca9b0c to your computer and use it in GitHub Desktop.
Standard settings of Prettier and ESLint for VSCode. Ember App configuration.
{
"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