We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a problem with eslintrc because line 11 misses a comma. Therefor the linter can't parse the file.
Besides eslint I'm using babel-eslint and eslint-plugin-react. With these you get clean and detailed and linting for react, jsx and es6.
My .eslintrc file looks like this
{ "parser": "babel-eslint", "plugins": [ "react" ], "ecmaFeatures": { "jsx": true, "modules": true }, "env": { "node": true, "mocha": true, "es6": true, "browser": true }, "globals": { }, "rules": { "quotes": [2, "single"], "semi": [2, "never"], "curly": [2, "multi-line"], "no-underscore-dangle": 0, "react/display-name": 0, "react/jsx-boolean-value": 1, "react/jsx-quotes": 1, "react/jsx-no-undef": 1, "react/jsx-sort-props": 1, "react/jsx-sort-prop-types": 1, "react/jsx-uses-react": 1, "react/jsx-uses-vars": 1, "react/no-did-mount-set-state": 1, "react/no-did-update-set-state": 1, "react/no-multi-comp": 1, "react/no-unknown-property": 1, "react/prop-types": 1, "react/react-in-jsx-scope": 1, "react/self-closing-comp": 1, "react/sort-comp": 0, "react/wrap-multilines": 1 } }
The text was updated successfully, but these errors were encountered:
Sure. Let's improve .eslintrc
.eslintrc
Sorry, something went wrong.
b583064
Closes electron-react-boilerplate#17, improve .eslintrc
2d495a9
No branches or pull requests
There is a problem with eslintrc because line 11 misses a comma. Therefor the linter can't parse the file.
Besides eslint I'm using babel-eslint and eslint-plugin-react. With these you get clean and detailed and linting for react, jsx and es6.
My .eslintrc file looks like this
The text was updated successfully, but these errors were encountered: