From 075679d24da07819d0cbc13dff5b792b2915d512 Mon Sep 17 00:00:00 2001 From: Adam Lui Date: Sun, 12 Jan 2025 15:45:27 -0800 Subject: [PATCH] Condensed YAML file pattern --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index e7a3496..44ec4bc 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -47,5 +47,5 @@ export default [ } }, { files: ['**/*.mjs', '**/lib*/*.js'], languageOptions: { sourceType: 'module' }}, - { files: ['**/*.yaml, **/*.yml'], ...yml.configs['flat/standard'][1] } + { files: ['**/*.{yaml,yml}'], ...yml.configs['flat/standard'][1] } ]