1.1.1 • Published 4 months ago

eslint-plugin-class-methods-use-this-regex v1.1.1

Weekly downloads
210
License
MIT
Repository
github
Last release
4 months ago

eslint-plugin-class-methods-use-this-regex

An enhanced version of the ESLint class-methods-use-this rule with RegExp exceptMethods option.

Installation

Install ESLint and eslint-plugin-class-methods-use-this-regex:

# - NPM
npm i eslint eslint-plugin-class-methods-use-this-regex --save-dev

# - Yarn
yarn add eslint eslint-plugin-class-methods-use-this-regex --dev

Usage

Add class-methods-use-this-regex to the plugins section of your eslint.config.mjs configuration file, and
configure the rule under the rules section. Don't forget to disable the core rule class-methods-use-this:

import classMethodsUseThisRegex from 'eslint-plugin-class-methods-use-this-regex';

export default [
    plugins: {
        'class-methods-use-this-regex': classMethodsUseThisRegex,
    },
    rules: {
        'class-methods-use-this': ['off'],
        'class-methods-use-this-regex/class-methods-use-this': ['error', {
            'exceptMethods': ['^render.*$'],
        }],
    },
];

... Or if you're still using the old configuration system, add this to your .eslintrc.json:

{
    "plugins": ["class-methods-use-this-regex"],
    "rules": {
        "class-methods-use-this": ["off"],
        "class-methods-use-this-regex/class-methods-use-this": ["error", {
            "exceptMethods": ["^render.*$"]
        }]
    }
}