web 3d图形渲染器
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.

16 lines
574 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.postprocess = exports.preprocess = void 0;
  6. // https://eslint.org/docs/developer-guide/working-with-plugins#processors-in-plugins
  7. // https://github.com/typescript-eslint/typescript-eslint/issues/808
  8. const preprocess = source => [source];
  9. exports.preprocess = preprocess;
  10. const postprocess = messages => // snapshot files should only be linted with snapshot specific rules
  11. messages[0].filter(message => message.ruleId === 'jest/no-large-snapshots');
  12. exports.postprocess = postprocess;