From 75f08be8376e0b64e4c4233b44373eaae42b7739 Mon Sep 17 00:00:00 2001 From: Jon Ursenbach Date: Fri, 4 Feb 2022 12:20:39 -0800 Subject: [PATCH] fix: requiring consistency of typescript record types (#312) --- typescript.js | 1 + 1 file changed, 1 insertion(+) diff --git a/typescript.js b/typescript.js index 2e0c9f44..41b77574 100644 --- a/typescript.js +++ b/typescript.js @@ -6,6 +6,7 @@ module.exports = { 'import/resolver': 'typescript', }, rules: { + '@typescript-eslint/consistent-indexed-object-style': 'error', '@typescript-eslint/consistent-type-imports': 'error', // Disable requiring return types because it's too easy to broaden them by accident.