mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-04 05:44:50 +00:00
43 lines
917 B
INI
43 lines
917 B
INI
# EditorConfig is awesome:http://EditorConfig.org
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# All Files
|
|
[*]
|
|
charset = utf-8
|
|
indent_style = space
|
|
indent_size = 4
|
|
insert_final_newline = false
|
|
trim_trailing_whitespace = true
|
|
|
|
# Solution Files
|
|
[*.slnx]
|
|
indent_size = 2
|
|
insert_final_newline = true
|
|
|
|
# XML Project Files
|
|
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
|
|
indent_size = 2
|
|
|
|
# Configuration Files
|
|
[*.{json,xml,yml,config,props,targets,nuspec,resx,ruleset}]
|
|
indent_size = 2
|
|
|
|
# Markdown Files
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
# Web Files
|
|
[*.{htm,html,js,ts,css,scss,less}]
|
|
indent_size = 2
|
|
insert_final_newline = true
|
|
|
|
# Bash Files
|
|
[*.sh]
|
|
end_of_line = lf
|
|
|
|
# C# files
|
|
[*.cs]
|
|
# License header
|
|
file_header_template = Copyright (c) Alexandre Mutel. All rights reserved.\nThis file is licensed under the BSD-Clause 2 license.\nSee the license.txt file in the project root for more information. |