From bf0d77d7d448e964e9716d5af67c48f3d014f090 Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Sun, 1 Mar 2026 01:03:39 +0100 Subject: Scaffold basic project tree, implement benchmarking logic Implement unit testing guardian --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..00c8da6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# EditorConfig dla Embedded C Project +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +max_line_length = 80 + +[*.c] +indent_style = tab +indent_size = 8 + +[*.h] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 +max_line_length = 120 \ No newline at end of file -- cgit v1.2.3