From 5b71029a7f69eab7a715d0fb4c4fc84e113469e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Mon, 13 Apr 2020 11:43:26 -0400 Subject: [PATCH] Disable import/named in the TypeScript configuration --- config/typescript.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/typescript.js b/config/typescript.js index 262e3c7999..624ca8e20e 100644 --- a/config/typescript.js +++ b/config/typescript.js @@ -19,4 +19,8 @@ module.exports = { }, }, + rules: { + // analysis/correctness + 'import/named': 'off', + } }