Skip to content

Instantly share code, notes, and snippets.

@cartant
Created December 5, 2020 12:50
Show Gist options
  • Save cartant/85ed115b63701446146e6a9f1b6849ab to your computer and use it in GitHub Desktop.
Save cartant/85ed115b63701446146e6a9f1b6849ab to your computer and use it in GitHub Desktop.
const baseRule = require("./no-foreach");
module.exports = {
meta: {
/* ... */
},
create(context) {
const contextForBaseRule = {
...context,
options: [{ types: ["Array"] }]
};
return baseRule.create(contextForBaseRule);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment