Open
Description
Describe the bug
Upon writing custom rules, we often encounter that HTMLHint does not notify us about broken rules.
To Reproduce
- Define a custom rule like
module.exports = HTMLHint > {
};
Expected behavior
Like in #662 it is expected, that at least some warning is shown, which rule could not be loaded.
Additional context
The result is to be expected due to catching all errors regarding rule imports and ignoring them:
Line 210 in e147134