1.1.0 • Published 3 years ago

@autosoft/eslint-config v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

If I should maintain this repo, please ⭐️

DM me on Twitter if you have questions or suggestions.


Installation

yarn add --dev @autosoft/eslint-config
npm install --save-dev @autosoft/eslint-config
pnpm add --save-dev @autosoft/eslint-config

Usage

In your package.json file:

{
  "eslintConfig": {
    "extends": "@autosoft/eslint-config"
  }
}

Running ESLint

Now to run ESLint, run yarn eslint source or npm run eslint source.

If you have autorepo installed, yarn auto lint source or npm run auto lint source will also run ESLint.

Updates

As this package updates, bug fixes are considered patch updates as usual.

Rule changes are considered minor updates. Rule changes can cause linting errors in your code, If you want to avoid rule changes, you can set your package to use a specific minor version of this package with the ~ operator:

{
  "devDependencies": {
    "@autosoft/eslint-config": "~1.0.0"
  }
}

MIT - MIT License