npm install --save-dev @quero/eslint-config-react
cat <<EOF > .eslintrc.js
module.exports = {
extends: [
'@quero/eslint-config-react',
],
};
EOF
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',
],
// GOOD
<BaseStep
payment={payment}
onSubmit={onSubmit}
onRequestError={onRequestError}
/>
// BAD
<BaseStep payment={payment} onSubmit={onSubmit} onRequestError={onRequestError} />