The LintHint gadget uses the core parsoid lint API to retrieve all lint errors for a specific page directly from Parsoid.
We need to suppress that API from returning 'large-tables' category lint records.
Setting the linter extension extension.json value to "none' priority has no impact on this core interface.
The first patch I am proposing filters out the 'large-table' records after Parsoid generates them, and is inelegant, but safe.
It might be better to pass an option to Parsoid such that the Parsoid lint code it does not look for and generate 'large-table' lint records when called from the core lint API with a special option disabling this lint.
The issue to be determined is who else besides LintHint is accessing this API and whether they want to see 'large-table' lint records or not.
In discussion with CScott it appears that Discussion Tools is also possibly using this API, but would also like the new category 'large-tables' to not be in the results.