Created
May 20, 2016 06:39
-
-
Save mike-casas/758672e3f30edbba4a6a3153dc61f439 to your computer and use it in GitHub Desktop.
eslint-jsx-example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
npm-debug.log | |
node_modules/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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