You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are rules which we could potentially enable fixers for.
Imagine if the rule had an API such as...
constsomeRule={check: async(filename,options)=>{// make an errors arrayreturnerrors;},fix: async(errors,options)=>{// do some stuff to fix the error}}exportconstsomeRule;
There are rules which we could potentially enable fixers for.
Imagine if the rule had an API such as...
This is similar to how
manypkg
works here...And how eslint rules work as well such as here...
The text was updated successfully, but these errors were encountered: