Created
April 7, 2017 23:32
-
-
Save codyromano/f9952afda0f502a49d4fe175b5fa7eb6 to your computer and use it in GitHub Desktop.
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
| { | |
| "env": { | |
| "browser": true, | |
| "commonjs": true, | |
| "es6": true | |
| }, | |
| "jsx-uses-vars": true, | |
| "extends": "eslint:recommended", | |
| "parserOptions": { | |
| "ecmaFeatures": { | |
| "experimentalObjectRestSpread": true, | |
| "jsx": true | |
| }, | |
| "sourceType": "module" | |
| }, | |
| "plugins": [ | |
| "react" | |
| ], | |
| "rules": { | |
| "no-unused-vars": "warn", | |
| "react/jsx-uses-vars": "warn", | |
| "react/jsx-uses-react": "warn", | |
| "linebreak-style": [ | |
| "error", | |
| "unix" | |
| ], | |
| "semi": [ | |
| "error", | |
| "always" | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment