diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 00000000..6d14be6c --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,8 @@ +--- +Checks: 'clang-diagnostic-*,clang-analyzer-*,performance-*,portability-*,bugprone-*' +CheckOptions: + - key: readability-identifier-naming.MethodCase + value: camelBack + - key: readability-identifier-naming.ParameterCase + value: camelBack +... diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..b4996a80 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +[*] +indent_style = tab +indent_size = 4 +trim_trailing_whitespace = true +insert_final_newline = true +vc_generate_documentation_comments = doxygen_slash_star +end_of_line = lf + +[*.bat] +end_of_line = crlf + +[*.lingo] +charset = macroman diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..b71c8fd4 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +/po/*.po encoding=utf-8 +*.lingo encoding=MacRoman +/engines.awk eol=lf +*.bat text eol=crlf +*.cpp text eol=lf +*.h text eol=lf +*.hpp text eol=lf +*.sh text eol=lf +/config* text eol=lf +configure.engine text eol=lf