From 93d8d7472ad8f49bf017e92f8e6dd6785e1cc4e3 Mon Sep 17 00:00:00 2001 From: Orfeas <38209077+0xfea5@users.noreply.github.com> Date: Wed, 3 Dec 2025 13:05:22 +0200 Subject: initial commit --- .editorconfig | 16 ++++++++++++++++ .gitignore | 7 +++++++ 2 files changed, 23 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3e36df7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*.{cpp,hpp}] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true +indent_style = space +indent_size = 2 +max_line_length = 80 + +[*.md] +max_line_length = 80 + +[COMMIT_EDITMSG] +max_line_length = 74 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..327927b --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +solution +compile_commands.json +.cache +cookie +*.out +input.txt +.emacs.desktop* \ No newline at end of file -- cgit v1.2.3