Skip to content

UNIwise/eslint-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9aa2403 · Jul 18, 2024

History

39 Commits
Apr 8, 2022
Jul 4, 2024
Sep 14, 2021
Sep 7, 2021
Apr 18, 2023
Apr 18, 2023
Jul 4, 2024
Jul 4, 2024
Jul 18, 2024
Jul 4, 2024

Repository files navigation

eslint-config

WISEflow's ESLint config for react.

Installation

# Install eslint and required packages
yarn add -D @uniwise/eslint-config eslint typescript @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-import-resolver-typescript eslint-plugin-import prettier eslint-config-prettier eslint-plugin-prettier

# For React add react plugin
yarn add -D eslint-plugin-react

Usage

After installing, update your project's .eslintrc.(json|js) or file to import the rule sets you want.

  • React - @uniwise/eslint-config or specifically @uniwise/eslint-config/react
  • Typescript (No react) - @uniwise/eslint-config/typescript

e.g in ./eslintrc.json

{
  "extends": ["@uniwise/eslint-config"],
  "rules": {
    "overriding_some_rule": "warn"
  }
}

or in ./eslintrc.js

module.exports = {
  extends: ['@uniwise/eslint-config/typescript']
  rules: {
    "overriding_some_rule": "warn"
  }
};

To run the linter:

yarn eslint src/

Read the ESlint config docs for more information.