@qest/eslint-config-react
v1.0.2
Published
All in one eslint config for React
Downloads
892
Readme
@qest/eslint-config-react
This package extends @qest/eslint-config-base
This aims to provide easy and consistent settings for all our react projects.
Package should take into cosideration tsconfig as well as prettier and enforce their rules trough eslint.
instalation
yarn add -D eslint prettier @qest/eslint-config-react
// .eslintrc.js
module.exports = {
extends: ["@qest/react"],
rules: [
//...any overrides
]
};
// .prettierrc.js
module.exports = {
...require('@qest/eslint-config-react/.prettierrc'),
//...any overrides
};