From e92af2b05048e6419e356aa45e320e3163d91b55 Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Fri, 15 Aug 2025 08:02:32 -0500 Subject: [PATCH] chore: set editorconfig to use tabs instead of spaces for sql files (#19344) --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.editorconfig b/.editorconfig index 9415469de3..419ae5b6d1 100644 --- a/.editorconfig +++ b/.editorconfig @@ -18,3 +18,11 @@ indent_size = 2 [coderd/database/dump.sql] indent_style = space indent_size = 4 + +[coderd/database/queries/*.sql] +indent_style = tab +indent_size = 4 + +[coderd/database/migrations/*.sql] +indent_style = tab +indent_size = 4