From a7cd73a3fc197e8d07f189f6b9be6dbc4d4f2558 Mon Sep 17 00:00:00 2001 From: surtur Date: Mon, 10 Jan 2022 08:55:07 +0100 Subject: [PATCH] add .editorconfig [skip ci] --- .editorconfig | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..771e56d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,25 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf + +[*.{cpp,h,hpp}] +indent_size = 4 +tab_width = 4 +indent_style = tab + +[*.starlark] +indent_size = 4 +tab_width = 4 +indent_style = tab + +[Makefile] +indent_style = tab +indent_size = 4 +tab_width = 4 + +[CMakeLists.txt] +indent_style = space +indent_size = 2 +tab_width = 2