MetaMask / module-lint

Analyzes one or more repos for divergence from a template repo.
1 stars 3 forks source link

If a lint rule throws, it prevents other rules from running #86

Closed mcmire closed 3 weeks ago

mcmire commented 1 month ago

Some lint rules throw if they rely on certain pieces of information that aren't present. For instance, rules that expect package.json to be in a certain format will throw if that is not the case.

When this happens, however, it prevents other rules that may not rely on the same information from running. This makes the linting report for a project not as useful as it could be.

Acceptance Criteria