diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-03-01 01:03:39 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-03-01 01:03:39 +0100 |
| commit | bf0d77d7d448e964e9716d5af67c48f3d014f090 (patch) | |
| tree | e55f1e91a8c20cd737dfb01dc12a954c25711e01 /.editorconfig | |
| download | embedded_guardian-bf0d77d7d448e964e9716d5af67c48f3d014f090.tar.gz embedded_guardian-bf0d77d7d448e964e9716d5af67c48f3d014f090.zip | |
Scaffold basic project tree, implement benchmarking logic
Implement unit testing guardian
Diffstat (limited to '')
| -rw-r--r-- | .editorconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..00c8da6 --- /dev/null +++ b/.editorconfig | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # EditorConfig dla Embedded C Project | ||
| 2 | root = true | ||
| 3 | |||
| 4 | [*] | ||
| 5 | charset = utf-8 | ||
| 6 | end_of_line = lf | ||
| 7 | insert_final_newline = true | ||
| 8 | trim_trailing_whitespace = true | ||
| 9 | max_line_length = 80 | ||
| 10 | |||
| 11 | [*.c] | ||
| 12 | indent_style = tab | ||
| 13 | indent_size = 8 | ||
| 14 | |||
| 15 | [*.h] | ||
| 16 | indent_style = tab | ||
| 17 | indent_size = 8 | ||
| 18 | |||
| 19 | [Makefile] | ||
| 20 | indent_style = tab | ||
| 21 | indent_size = 8 | ||
| 22 | max_line_length = 120 \ No newline at end of file | ||
