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
{{ message }}
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.
mrjoelkemp edited this page Nov 8, 2014
·
1 revision
Error filters are a way to choose which errors should be reported.
The main use case for this is if you have legacy code with tons of style errors but only want to report errors relevant to your changes. See issue #335 as an example.
An error filter can be defined as follows:
"errorFilter": function(error){// Analyze the error object...// Return false to NOT report this error// Return true to report this error returnfalse;}