EditorConfig essentials (#4445)

This commit is contained in:
Alexandru Ionut Tripon
2025-12-08 01:12:08 +02:00
committed by GitHub

View File

@@ -1,11 +1,22 @@
# EditorConfig specs and documentation: https://EditorConfig.org # EditorConfig specs and documentation: https://EditorConfig.org
# top-most EditorConfig file # top-most EditorConfig file
root = true root = true
# C++ Code Style settings [*]
[*.{c++,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}] indent_style = space
cpp_generate_documentation_comments = doxygen_slash_star indent_size = 4
end_of_line = lf
[CMakeLists.txt] charset = utf-8
ij_continuation_indent_size = 4 insert_final_newline = true
trim_trailing_whitespace = true
[*.{yml,nix}]
indent_size = 2
# C++ Code Style settings
[*.{c++,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}]
cpp_generate_documentation_comments = doxygen_slash_star
[CMakeLists.txt]
ij_continuation_indent_size = 4