From 66e3e938ab225c9a803b316c3954a69f6b53ba7f Mon Sep 17 00:00:00 2001 From: Martin Burnicki Date: Tue, 25 Aug 2020 15:41:57 +0200 Subject: Add .gitignore and .editorconfig --- .editorconfig | 15 +++++++++++++++ .gitignore | 11 +++++++++++ 2 files changed, 26 insertions(+) create mode 100755 .editorconfig create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100755 index 0000000..8026a9f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# Editor configuration file +# https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# General stype +[*] +trim_trailing_whitespace = true +insert_final_newline = true + +# Indentation using spaces +[*.{c,cpp,h}] +indent_style = space +indent_size = 2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6d3475d --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# MBGRCS files +*.pj +*.use + +# kdevelop project files +*.kdev* +.kdev4/ + +# Doxygen input and output is ignored so far +Doxyfile +doc/ -- cgit v1.2.3