@quero/eslint-config-react
v1.2.3
Published
Base eslint config for React projects for Quero Education
Downloads
349
Readme
@quero/eslint-config-react
Usage
npm install --save-dev @quero/eslint-config-react
cat <<EOF > .eslintrc.js
module.exports = {
extends: [
'@quero/eslint-config-react',
],
};
EOF
Rules
This package extends all of the below described:
extends: [
'@quero/base',
'plugin:react/recommended',
'plugin:testing-library/react',
'plugin:jest-dom/recommended',
'plugin:jsx-a11y/recommended',
],
react/jsx-max-props-per-line
// GOOD
<BaseStep
payment={payment}
onSubmit={onSubmit}
onRequestError={onRequestError}
/>
// BAD
<BaseStep payment={payment} onSubmit={onSubmit} onRequestError={onRequestError} />