mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-02 06:02:19 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
17
web/node_modules/eslint-plugin-jest/lib/processors/snapshot-processor.js
generated
vendored
Normal file
17
web/node_modules/eslint-plugin-jest/lib/processors/snapshot-processor.js
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.postprocess = exports.preprocess = 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;
|
Loading…
Add table
Add a link
Reference in a new issue