2020-08-25 23:57:08 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
|
|
value: true
|
|
|
|
});
|
2022-11-10 10:43:16 +00:00
|
|
|
exports.preprocess = exports.postprocess = void 0;
|
2020-08-25 23:57:08 +00:00
|
|
|
// https://eslint.org/docs/developer-guide/working-with-plugins#processors-in-plugins
|
|
|
|
// https://github.com/typescript-eslint/typescript-eslint/issues/808
|
|
|
|
|
2022-11-10 10:43:16 +00:00
|
|
|
const preprocess = source => [source];
|
2020-08-25 23:57:08 +00:00
|
|
|
exports.preprocess = preprocess;
|
2022-11-10 10:43:16 +00:00
|
|
|
const postprocess = messages =>
|
|
|
|
// snapshot files should only be linted with snapshot specific rules
|
2020-08-25 23:57:08 +00:00
|
|
|
messages[0].filter(message => message.ruleId === 'jest/no-large-snapshots');
|
|
|
|
exports.postprocess = postprocess;
|