This repository was archived by the owner on Sep 28, 2020. It is now read-only.
This repository was archived by the owner on Sep 28, 2020. It is now read-only.
Cache persists when eslint rules have changed #124
Closed
Description
The eslint-loader cache is only ever invalidated when a file is changed. This means that if you make changes to your eslint rules, the last cached lint result will still be output by eslint-loader and not the outcome based on the updated rules. The only way to fix this is to either modify each file being linted or manually delete the cache.
The entire cache should be invalidated if the eslint rules have changed.