Skip to content

Instantly share code, notes, and snippets.

@hmps
Last active September 4, 2015 12:01
Show Gist options
  • Save hmps/37e6b680b43fbadd2566 to your computer and use it in GitHub Desktop.
Save hmps/37e6b680b43fbadd2566 to your computer and use it in GitHub Desktop.
ESLint configuration
{
"parser": "babel-eslint",
"rules": {
"indent": [ 2, 4 ],
"quotes": [ 2, "single" ],
"linebreak-style": [ 2, "unix" ],
"semi": [ 2, "always" ],
"func-names": 2,
"comma-style": 2,
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"no-use-before-define": 0,
"no-underscore-dangle": 0
},
"ecmaFeatures": {
"modules": true
},
"env": {
"es6": true,
"browser": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment