From 62e1c72b2e1123f633a1d9524ad8b69547e07658 Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Fri, 9 Aug 2024 13:11:28 -0400 Subject: [PATCH] Generalize EditorConfig to all `*.json` files --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 762b67e9883..e9b8f78b0e5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -16,7 +16,7 @@ indent_size = 2 [Makefile] indent_style = tab -# Matches the exact files either package.json or .travis.yml -[{package.json,.travis.yml}] +# Matches .json files or the exact file .travis.yml +[{*.json,.travis.yml}] indent_style = space indent_size = 2