Skip to content

Instantly share code, notes, and snippets.

@mike-casas
Created May 20, 2016 06:39
Show Gist options
  • Save mike-casas/758672e3f30edbba4a6a3153dc61f439 to your computer and use it in GitHub Desktop.
Save mike-casas/758672e3f30edbba4a6a3153dc61f439 to your computer and use it in GitHub Desktop.
eslint-jsx-example
{
"rules": {
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"react/prop-types": 1,
"react/no-multi-comp": 1
},
"env": {
"es6": true,
"browser": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"modules": true,
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react"
]
}
.DS_Store
npm-debug.log
node_modules/
{
"name": "eslint-jsx-example",
"version": "1.0.0",
"main": "main.js",
"scripts": {},
"devDependencies": {
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.3.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment