Skip to content

Makes eslint friendly towards Chai.js 'expect' and 'should' statements.

License

Notifications You must be signed in to change notification settings

ihordiachenko/eslint-plugin-chai-friendly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6303aa5 · Aug 25, 2024

History

82 Commits
May 23, 2024
Jul 28, 2024
May 23, 2024
Apr 23, 2020
Jan 8, 2024
Oct 26, 2019
Nov 27, 2016
Jun 3, 2024
Jun 3, 2024
Aug 25, 2024
Aug 25, 2024

Repository files navigation

eslint-plugin-chai-friendly

npm npm

This plugin overrides no-unused-expressions to make it friendly towards chai expect and should statements.

// this
expect(foo).to.be.true;
foo.should.be.true;

// instead of this
expect(foo).to.be.true; // eslint-disable-line no-unused-expressions
foo.should.be.true; // eslint-disable-line no-unused-expressions

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-chai-friendly:

npm install eslint-plugin-chai-friendly --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-chai-friendly globally.

Usage

Add chai-friendly to the plugins section of your ESLint configuration file. Then disable original no-unused-expressions rule and configure chai-friendly replacement under the rules section.

ESLint 9 flat config format:

import pluginChaiFriendly from 'eslint-plugin-chai-friendly';

export default {
    plugins: {'chai-friendly': pluginChaiFriendly},
    rules: {
        "no-unused-expressions": "off", // disable original rule
        "chai-friendly/no-unused-expressions": "error"
    },
};

Legacy .eslintrc format:

{
    "plugins": [
        "chai-friendly" // you can omit the eslint-plugin- prefix
    ],
    "rules": {
        "no-unused-expressions": 0, // disable original rule
        "chai-friendly/no-unused-expressions": 2
    }
}

If you don't need to tweak the above rule settings, you can instead extend the provided recommended configuration.

ESLint 9 flat config format:

const pluginChaiFriendly = require("eslint-plugin-chai-friendly");

module.exports = [
    pluginChaiFriendly.configs.recommendedFlat,
    // other configurations
]

Legacy .eslintrc format:

{
  "extends": ["plugin:chai-friendly/recommended"]
}

Options

This rule, in its default state, does not require any arguments. If you would like to enable one or more of the following you may pass an object with the options set as follows:

  • allowShortCircuit set to true will allow you to use short circuit evaluations in your expressions (Default: false).
  • allowTernary set to true will enable you to use ternary operators in your expressions similarly to short circuit evaluations (Default: false).
  • allowTaggedTemplates set to true will enable you to use tagged template literals in your expressions (Default: false).
  • enforceForJSX set to true will flag unused JSX element expressions (Default: false).

These options allow unused expressions only if all of the code paths either directly change the state (for example, assignment statement) or could have side effects (for example, function call).

More info in the original rule's docs.

Supported Rules

  • chai-friendly/no-unused-expressions