Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 636 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 636 Bytes

@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
};