40 lines
716 B
INI
40 lines
716 B
INI
##
|
|
## PROJECT: Mouri Internal Library Essentials
|
|
## FILE: .editorconfig
|
|
## PURPOSE: The root .editorconfig file for .NET Project
|
|
##
|
|
## LICENSE: The MIT License
|
|
##
|
|
## DEVELOPER: Mouri_Naruto (Mouri_Naruto AT Outlook.com)
|
|
##
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8-bom
|
|
end_of_line = crlf
|
|
|
|
[*.md]
|
|
indent_size = 2
|
|
insert_final_newline = true
|
|
|
|
[*.{cs,csx,vb,vbx}]
|
|
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
|
|
|
|
[*.bat]
|
|
charset = utf-8
|
|
insert_final_newline = true
|
|
|
|
[*.sh]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|