mirror of https://github.com/M2Team/NanaZip.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
##
|
|
## PROJECT: Mouri Internal Library Essentials
|
|
## FILE: .editorconfig
|
|
## PURPOSE: The root .editorconfig file
|
|
##
|
|
## LICENSE: The MIT License
|
|
##
|
|
## MAINTAINER: MouriNaruto (Kenji.Mouri@outlook.com)
|
|
##
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8-bom
|
|
end_of_line = crlf
|
|
|
|
[*.md]
|
|
insert_final_newline = true
|
|
|
|
[*.{c,c++,cc,cpp,cxx,h,h++,hh,hpp,hxx,ixx,cppm,ipp,odl,idl,inl,ipp,tlh,tli}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
vc_generate_documentation_comments = doxygen_slash_star
|
|
|
|
[*.{cs,csx,vb,vbx,asmx}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.{js,json,xml,toml,xaml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.rc]
|
|
charset = utf-16le
|
|
|
|
[*.inf]
|
|
charset = utf-16le
|
|
|
|
[*.bat]
|
|
charset = utf-8
|
|
insert_final_newline = true
|
|
|
|
[*.sh]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
|
|
[*.{asm,inc,s,nasm}]
|
|
charset = utf-8
|
|
indent_style = space
|
|
indent_size = 4
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|