From 1bf2a07bc31e8de852f308cadbf7f5269e6551c6 Mon Sep 17 00:00:00 2001 From: BlackMark Date: Sat, 27 Jul 2019 13:11:34 +0200 Subject: [PATCH] Initial commit --- .clang-format | 13 +++++++++++++ .gitattributes | 9 +++++++++ .gitignore | 4 ++++ flash.hpp | 0 4 files changed, 26 insertions(+) create mode 100644 .clang-format create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 flash.hpp diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..63ebf38 --- /dev/null +++ b/.clang-format @@ -0,0 +1,13 @@ +--- +BasedOnStyle: LLVM +ColumnLimit: 120 +IndentWidth: 4 +TabWidth: 4 +UseTab: ForIndentation +AlignEscapedNewlines: DontAlign +AllowShortFunctionsOnASingleLine: Empty +AlwaysBreakTemplateDeclarations: true +BreakBeforeBraces: Custom +BraceWrapping: + AfterFunction: true +... diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3e5b64f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +*.h eol=lf +*.hpp eol=lf +*.c eol=lf +*.cpp eol=lf +.git* eol=lf +*.vcxproj* eol=crlf +*.cppproj eol=crlf +*.sln eol=crlf +*.atsln eol=crlf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..edee58b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.vs +Release +Debug +*.componentinfo.xml diff --git a/flash.hpp b/flash.hpp new file mode 100644 index 0000000..e69de29