From 235f317b263ea1819beac7ed1f99d8978bd80e1b Mon Sep 17 00:00:00 2001 From: Jongsun Suh Date: Tue, 24 Sep 2024 13:11:18 -0400 Subject: [PATCH] Edit ignore patterns --- eslint.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index b14799f026f..c655042e2c5 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -9,12 +9,15 @@ const config = tseslint.config({ '!.eslint.config.mjs', '!jest.config.js', 'yarn.lock', - '**/*.d.ts', '**/**.map', + '**/*.json', + '**/*.md', + '**/*.sh', '**/dist/**', '**/docs/**', '**/coverage/**', 'merged-packages/**', + '.yarn/**', 'scripts/create-package/package-template/**', ], },