Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.1 KB

prefer-object-rule.md

File metadata and controls

49 lines (36 loc) · 1.1 KB

Disallow rule exports where the export is a function. (prefer-object-rule)

(fixable) The --fix option on the command line automatically fixes problems reported by this rule.

Rule Details

The rule reports an error if it encounters a rule that's defined using the old style of just a create function.

Examples of incorrect code for this rule:

/* eslint eslint-plugin/prefer-object-rule: error */

module.exports = function (context) {
  return { Program() { context.report() } };
};

module.exports = function create(context) {
  return { Program() { context.report() } };
};

module.exports = (context) => {
  return { Program() { context.report() } };
};

Examples of correct code for this rule:

/* eslint eslint-plugin/prefer-object-rule: error */

module.exports = {
  create(context) {
    return { Program() { context.report() } };
  },
};

module.exports = {
  create(context) {
    return { Program() { context.report() } };
  },
};

module.exports = {
  create: (context) => {
    return { Program() { context.report() } };
  },
};