eslint-rule-composer icon indicating copy to clipboard operation
eslint-rule-composer copied to clipboard

A utility for composing ESLint rules from other ESLint rules

Results 7 eslint-rule-composer issues
Sort by recently updated
recently updated
newest added
trafficstars

Is there a way to extend current rules aplying default settings? I think is the only missing functionality of this project...

I want to create an ESLint rule that composes no-restricted-imports. This rule requires configuration, but I'm not sure how to pass that to the composed rule. For example, I would...

it was introduced in eslint v7.0. refs: https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions I can make a PR later. 😄

Is there a means to add autofixing to composed rules? If so, how would I go about doing that. Specifically I'm looking to autofix no-unused-vars as reported [here](https://github.com/eslint/eslint/issues/11668)

I have a simple filterReports rule but when I run the rule, it doesn't show the errors in the project which definitely has the rule violation. I even went nuclear...

Hello, I am looking for a help. I am trying to use `filterReports`, although my predicate function has to be a bit more involved then any readme example or tests...