0.0.15 • Published 2 years ago

eslint-config-okta v0.0.15

Weekly downloads
778
License
Apache-2.0
Repository
github
Last release
2 years ago

eslint-config-okta

Shared ESLint config for Okta products.

In addition to generic JS linter rules, this includes rules for TypeScript, React, and Node.js.

Usage

There are two configurations available for use, either eslint-config-okta, or eslint-config-okta/strict. The base configuration helps with transitioning over to the strict configuration.

In your project's package.json:

  "eslintConfig": {
    "extends": "eslint-config-okta/strict"
  },

...or in your project's .eslintrc:

"extends": [
  "eslint-config-okta/strict"
],