From 7b148ac2fac282f49e0621b77898794ae2c37c5a Mon Sep 17 00:00:00 2001 From: Mathieu Santostefano Date: Wed, 18 Jun 2025 15:47:43 +0200 Subject: [PATCH] Fix .editorconfig to support Caddyfile and docker compose files Docker compose: `compose.{yml,yaml}` and `docker-compose.{yml,yaml}` was not supported, fixed Caddyfile: `Caddyfile` was not supported, fixed --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 0315479cc..3d04c2ec7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -47,11 +47,11 @@ indent_size = 4 [composer.json] indent_size = 4 -[{compose,docker-compose}.*.{yaml,yml}] +[{compose,docker-compose}.{*.yaml,*.yml,yaml,yml}] indent_size = 2 [*.*Dockerfile] indent_style = tab -[*.*Caddyfile] +[{Caddyfile,*.*Caddyfile}] indent_style = tab