Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 808 Bytes

fixer-return.md

File metadata and controls

43 lines (32 loc) · 808 Bytes

Enforces always return from a fixer function (fixer-return)

In a fixable rule, missing return from a fixer function will not apply fixes.

Rule Details

This rule enforces that fixer functions always return a value.

Examples of incorrect code for this rule:

/* eslint eslint-plugin/fixer-return: error */

module.exports = {
  create (context) {
    context.report({
      fix (fixer) {
        fixer.foo();
      },
    });
  },
};

Examples of correct code for this rule:

/* eslint eslint-plugin/fixer-return: error */

module.exports = {
  create (context) {
    context.report({
      fix (fixer) {
        return fixer.foo();
      },
    });
  },
};

When Not To Use It

If you don't want to enforce always return from a fixer function, do not enable this rule.