Created
February 8, 2016 17:30
-
-
Save stinoga/e69ba869a26a28866cae to your computer and use it in GitHub Desktop.
Eslint configuration
This file contains 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
{ | |
"rules": { | |
"indent": [ | |
2, | |
2 | |
], | |
"quotes": [ | |
2, | |
"single" | |
], | |
"linebreak-style": [ | |
2, | |
"unix" | |
], | |
"semi": [ | |
2, | |
"always" | |
] | |
}, | |
"env": { | |
"es6": true, | |
"browser": true, | |
"node": true | |
}, | |
"extends": "eslint:recommended", | |
"ecmaFeatures": { | |
"jsx": true, | |
}, | |
"plugins": [ | |
"react" | |
], | |
"parser": "babel-eslint", | |
"globals": { | |
"angular": true, | |
"$": true, | |
"gettext": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment