1.0.0 • Published 1 year ago

eslint-config-cmsu v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

ESLint Config

A custom ESLint config used throughout this monorepo.

Usage

Add this package as a dependency.

{
  "dependencies": {
    "eslint-config-cmsu": "workspace:*"
  }
}

We can then import the config into a .eslintrc file like this:

// .eslintrc
{
  "root": true,
  "extends": ["cmsu"]
}

By adding cmsu to our extends array, we're telling ESLint to look for a package called eslint-config-cmsu which it will find in our workspace.