1.1.4 • Published 2 years ago

@carbonzz/configs v1.1.4

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
2 years ago

ESlint Config

A set of ESLint rules for quality development of any project.

How to use

  1. Install this package in your project:
    yarn add @onesimpleone/eslint-config
  2. Add this package to .eslintrc.js:
    module.exports = {
      ...
      extends: ['@onesimpleone/eslint-config'],
      ...
    }
  3. Add the command to package.json:
    {
      "scripts": {
        "lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache",
      }
    }
  4. Run it: yarn lint. Finished!