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
We should also create rules for react and jsx.
This can be simple done by creating a react/index.js
react/index.js
In a react project this can be used the following way:
{ "root": true, "extends": [ "eslint-config-ma", "eslint-config-ma/react" ], "parser": "babel-eslint", "plugins": [ "react" ] }
The configuration should extend from the react recommended which should be added as peerDependency, should be something like:
// react/index.js module.exports = { "env": { "browser": true, "node": false, "es6": true }, "extends": "plugin:react/recommended", "rules": { // Add rules here } }
maybe orientate here by the sulu eslint rules for react and jsx https://github.com/sulu/sulu/blob/develop/.eslintrc.json#L105-L180
The text was updated successfully, but these errors were encountered:
Disable the no-descending-specificity rule (massiveart#6)
39a3d1f
No branches or pull requests
We should also create rules for react and jsx.
This can be simple done by creating a
react/index.js
In a react project this can be used the following way:
The configuration should extend from the react recommended which should be added as peerDependency, should be something like:
maybe orientate here by the sulu eslint rules for react and jsx https://github.com/sulu/sulu/blob/develop/.eslintrc.json#L105-L180
The text was updated successfully, but these errors were encountered: