From 574411bb6285b339a5551032094cd64456ff3b27 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Wed, 11 Jul 2018 07:20:35 -0700 Subject: [PATCH] Ignore test262 for Prettier (#2242) Summary: This will fix CI on master. I forgot it's possible to land a change internally without it passing the CI checks. Pull Request resolved: https://github.com/facebook/prepack/pull/2242 Differential Revision: D8801741 Pulled By: gaearon fbshipit-source-id: 454fcb29e023a502557b67e0ed12a304c4e5fabc --- scripts/prettier.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prettier.js b/scripts/prettier.js index 50d9afa17..4af8028ee 100644 --- a/scripts/prettier.js +++ b/scripts/prettier.js @@ -32,7 +32,7 @@ const config = { }, jest: { patterns: ["test/**/*.js"], - ignore: ["test/**/syntaxError.js"], + ignore: ["test/**/syntaxError.js", "test/test262/**/*.js"], }, };