1.0.0 • Published 7 years ago

eslint-config-kuali v1.0.0

Weekly downloads
9
License
-
Repository
-
Last release
7 years ago

eslint-config-kuali

The base eslint config is used as a starting point to configure Kuali javascript projects.

Note: This uses the "eslint:all" rule, which is "not recommended for production use" because defaults for that rules can change with every major and minor version bump. For this reason, it is marked as a peer dependency with a pinned version. The peer dependency will fail if you don't match the exact version. If you find that this is out of date, please reach out to the core team as we want to keep this as up to date as possible.

Installation

npm install eslint-config-kuali --save-dev

Usage

{
  "extends": [
    "eslint-config-kuali"
  ],
  "rules": {
    // Put your overrides here
  }
}

Available "extensions"

  • eslint-config-kuali - The base config for your javascript project. Assumes features included in Node >= v6.x, but does not assume a node environment
  • eslint-config-kuali/node - An extension of rules to be used for node projects.
  • eslint-config-kuali/react - An extension of rules to be used for react projects.
  • eslint-config-kuali/mocha - An extension of rules to be used for mocha projects.