Last active
July 2, 2016 17:23
-
-
Save hectorh30/530984dcd3a978b34535506c9f58ecfe to your computer and use it in GitHub Desktop.
Current prefered eslint (v3) settings for frontend (emberjs) dev
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
{ | |
"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