Skip to content

Instantly share code, notes, and snippets.

@brookslyrette
Created December 3, 2015 21:36
Show Gist options
  • Select an option

  • Save brookslyrette/86d9341f4bf920af651a to your computer and use it in GitHub Desktop.

Select an option

Save brookslyrette/86d9341f4bf920af651a to your computer and use it in GitHub Desktop.
Dotsub's eslint configuration
{
"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