Open
Description
Hi, I am using Stricter library to execute a rule for an array of packages.
something like this in stricter.config.js
:
module.exports = { ... rules: { 'package-structure': ({ packages }) => packages.map(pkg => ({ level: 'error', config: { pkgRoot: pkg, }, })), 'rule-that-does-not-need-to-execute-multiple-times': { level: 'error', ... } }, ... }
the rule is executed synchronously for all the packages. This is taking a lot of time. Can I optimise run time here probably using multithreading?
Metadata
Assignees
Labels
No labels
Activity