Created
June 8, 2018 08:43
-
-
Save ayann/718e11b1e628c3e2daf87b9b2e98427b to your computer and use it in GitHub Desktop.
electronforge-react eslint
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
| { | |
| "parser": "babel-eslint", | |
| "parserOptions": { | |
| "ecmaFeatures": { | |
| "jsx": true | |
| } | |
| }, | |
| "plugins": [ | |
| "react" | |
| ], | |
| "extends": ["eslint-config-airbnb", "eslint:recommended", "plugin:react/recommended"], | |
| "rules": { | |
| "import/extensions": 0, | |
| "import/no-extraneous-dependencies": 0, | |
| "import/no-unresolved": [2, { "ignore": ["electron"] }], | |
| "linebreak-style": 0, | |
| "react/prefer-stateless-function": 0, | |
| "react/jsx-no-undef": 0, | |
| "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | |
| "no-undef": 0 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment