Created
December 3, 2015 21:36
-
-
Save brookslyrette/86d9341f4bf920af651a to your computer and use it in GitHub Desktop.
Dotsub's eslint 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
| { | |
| "extends": "airbnb", | |
| "ecmaFeatures": { | |
| "modules": true | |
| }, | |
| "rules": { | |
| "react/no-multi-comp": 0, | |
| "indent": [2, 4], | |
| // no hanging comma's | |
| "comma-dangle": [2, "never"], | |
| // functions can be un-named | |
| "func-names": 0, | |
| // '} \n else if' | |
| "brace-style": [2, "stroustrup"] | |
| }, | |
| "globals": { | |
| // defines jQuery as a global import | |
| "$": 1 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment