Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

eslint-plugin-istanbul

istanbuljs74.4kMIT0.1.2

ESLint plugin for istanbul code coverage

eslint, istanbul, coverage

readme

eslint-plugin-istanbul

npm version CI

A set of rules to enforce good practices for istanbuljs.

Install

$ npm install --save-dev eslint eslint-plugin-istanbul

Usage

Configure it in package.json.

{
  "name": "my-awesome-project",
  "eslintConfig": {
    "plugins": ["istanbul"],
    "rules": {
      "istanbul/no-ignore-file": "error",
      "istanbul/prefer-ignore-reason": "error"
    }
  }
}

Rules

See the ESLint docs for more information about extending config files.

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.1.2 (2020-06-29)

Features

  • Update peer dependencies to support ESLint v7 (#5) (7de0a0a)

0.1.1 (2020-05-10)

Features

  • Link documentation URLs to rules (c48dd2a)

Bug Fixes

  • rules definitions should not include namespace (908470c)

0.1.0 (2020-05-10)

Features