Skip to content

Instantly share code, notes, and snippets.

@hectorh30
Last active July 2, 2016 17:23
Show Gist options
  • Save hectorh30/530984dcd3a978b34535506c9f58ecfe to your computer and use it in GitHub Desktop.
Save hectorh30/530984dcd3a978b34535506c9f58ecfe to your computer and use it in GitHub Desktop.
Current prefered eslint (v3) settings for frontend (emberjs) dev
{
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true,
"browser": true,
"embertest": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
2,
2,
{ SwitchCase: 1 }
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"globals": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment