0.5.3 • Published 3 years ago

eslint-config-checkly v0.5.3

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

eslint-config-checkly

This repository contains shared eslint configurations based on eslint-config-standard for Checkly projects. Beware that it's opinionated and primarly intended for internal use.

Installation

First, install eslint and eslint-config-checkly:

npm install --save-dev eslint eslint-config-checkly

Afterwards, extend your eslint config to include checkly by adding the following to your package.json:

 ...
  "eslintConfig": {
    "extends": [
      "checkly",
      "checkly/node"
    ]
  },
  ...

Or, if you rather using .eslintrc:

{
    "extends": [
      "checkly",
      "checkly/node"
    ]
  }

This config comes in 2 flavors: node & vue that includes specific configs for the environment.