You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
574 B
17 lines
574 B
"use strict"; |
|
|
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.preprocess = exports.postprocess = void 0; |
|
|
|
// https://eslint.org/docs/developer-guide/working-with-plugins#processors-in-plugins |
|
// https://github.com/typescript-eslint/typescript-eslint/issues/808 |
|
const preprocess = source => [source]; |
|
|
|
exports.preprocess = preprocess; |
|
|
|
const postprocess = messages => // snapshot files should only be linted with snapshot specific rules |
|
messages[0].filter(message => message.ruleId === 'jest/no-large-snapshots'); |
|
|
|
exports.postprocess = postprocess; |