Skip to content

Instantly share code, notes, and snippets.

@aerrity
Created October 19, 2017 17:13
Show Gist options
  • Save aerrity/52555ec495702b588b8bc7c1df73f320 to your computer and use it in GitHub Desktop.
Save aerrity/52555ec495702b588b8bc7c1df73f320 to your computer and use it in GitHub Desktop.
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": 2,
"quotes": [2, "single"],
"no-var": 2,
"space-before-function-paren": [1, "never"],
"space-before-blocks": [2, "always"],
"func-style": [0, "expression"],
"no-undefined": 2,
"prefer-const": 0,
"comma-style": 2,
"indent": ["error", 2],
"space-infix-ops": 2,
"eqeqeq": ["error", "always"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment