From 4dcb0d40d22b307b3d45d7ed15530c5378ab8151 Mon Sep 17 00:00:00 2001 From: Asahi Lina Date: Wed, 8 Nov 2023 15:42:41 +0900 Subject: [PATCH] asahi: Add .editorconfig for CL files These are formatted with 3-space indents like our C code, so tell editors about it. Signed-off-by: Asahi Lina Part-of: --- src/asahi/.editorconfig | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/asahi/.editorconfig diff --git a/src/asahi/.editorconfig b/src/asahi/.editorconfig new file mode 100644 index 00000000000..741ecbd2dd0 --- /dev/null +++ b/src/asahi/.editorconfig @@ -0,0 +1,4 @@ +[*.cl] +indent_style = space +indent_size = 3 +max_line_length = 78