From 7ae2df3dcd929eea86c211628b4dc5f912c10629 Mon Sep 17 00:00:00 2001 From: Sean Capaloff-Jones Date: Thu, 15 Jan 2026 02:46:39 +0000 Subject: [PATCH] chore: add array-type rule --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index 1d5e93a4..a2134310 100644 --- a/src/index.js +++ b/src/index.js @@ -73,6 +73,7 @@ module.exports = defineConfig([ }, }, rules: { + '@typescript-eslint/array-type': ['error', { default: 'array-simple' }], '@typescript-eslint/ban-ts-comment': 'warn', '@typescript-eslint/no-floating-promises': 'error', '@typescript-eslint/no-non-null-assertion': 'off',