From 9a03aee7035e7f474ac33edc92954d45e68670e4 Mon Sep 17 00:00:00 2001 From: Olivia Lee Date: Thu, 7 Aug 2025 17:05:30 -0700 Subject: [PATCH] editorconfig: move OpenCL configuration to root All of the OpenCL files in mesa use 3-space indentation. Move the editorconfig configuration for this to the root so that supported editors will pick this up automatically. Signed-off-by: Olivia Lee Reviewed-by: Mary Guillemard Reviewed-by: Alyssa Rosenzweig Part-of: --- .editorconfig | 2 +- src/asahi/.editorconfig | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 src/asahi/.editorconfig diff --git a/.editorconfig b/.editorconfig index 00340ec1324..230165b43e4 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,7 +8,7 @@ charset = utf-8 insert_final_newline = true tab_width = 8 -[*.{c,h,cpp,hpp,cc,hh,y,yy}] +[*.{c,h,cpp,hpp,cc,hh,y,yy,cl}] indent_style = space indent_size = 3 max_line_length = 78 diff --git a/src/asahi/.editorconfig b/src/asahi/.editorconfig deleted file mode 100644 index 741ecbd2dd0..00000000000 --- a/src/asahi/.editorconfig +++ /dev/null @@ -1,4 +0,0 @@ -[*.cl] -indent_style = space -indent_size = 3 -max_line_length = 78