Skip to content

Instantly share code, notes, and snippets.

@imrvelj
Last active June 4, 2016 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imrvelj/7175b78dec359e6910b8987fcc5ef664 to your computer and use it in GitHub Desktop.
Save imrvelj/7175b78dec359e6910b8987fcc5ef664 to your computer and use it in GitHub Desktop.
{
"extends": "standard",
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"globals": {},
"rules": {
"semi": ["error", "always"],
"indent": ["error", 4],
"quotes": [2, "single"],
"strict": [2, "never"],
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2
},
"plugins": [
"react"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment