From 861a4936a542790563fcb463788738990a087132 Mon Sep 17 00:00:00 2001 From: estrattonbailey Date: Thu, 25 Aug 2022 11:52:29 -0500 Subject: [PATCH] feat: add no-default-export warning --- .eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 1083a4d..6eebe08 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -68,6 +68,8 @@ module.exports = { 'no-nested-ternary': 'warn', // TODO 'no-unneeded-ternary': 'warn', // TODO + 'import/no-default-export': 'warn', // TODO + '@typescript-eslint/ban-ts-comment': ['warn', { 'ts-expect-error': 'allow-with-description' }], // TODO '@typescript-eslint/no-explicit-any': 'warn', // TODO '@typescript-eslint/no-inferrable-types': 'warn', // TODO