New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-checkly

Package Overview
Dependencies
Maintainers
5
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-checkly

Shared eslint configuration for Checkly projects

0.5.3
latest
Source
npm
Version published
Weekly downloads
6
200%
Maintainers
5
Weekly downloads
 
Created
Source

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.

Keywords

code checker

FAQs

Package last updated on 22 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts