From 14997a5b98c77be44f5f09f1af0bb871c2cd6bb9 Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Tue, 26 Jan 2021 05:28:30 -0800 Subject: [PATCH] Add antd to builtInModules Summary: importing `antd` in a plugin that lives in the Flipper repo will give a int warning. This fixes that, antd is provided by the host package. Reviewed By: nikoant Differential Revision: D26073161 fbshipit-source-id: 897357fafce20129f7e12c035ff99cb4870cc814 --- desktop/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/.eslintrc.js b/desktop/.eslintrc.js index 3eea31d20..a2fd01e50 100644 --- a/desktop/.eslintrc.js +++ b/desktop/.eslintrc.js @@ -21,6 +21,7 @@ const builtInModules = [ 'react-dom', 'electron', 'adbkit', + 'antd', 'immer', '@emotion/styled', ];