2
0
mirror of https://github.com/rehlds/revoice.git synced 2025-02-23 03:51:16 +03:00
revoice/.editorconfig

63 lines
1.0 KiB
INI
Raw Normal View History

#######################################
# Core Options #
#######################################
# This file is the top-most EditorConfig file
root = true
# All Files
[*]
charset = utf-8
guidelines = 120
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
#######################################
# File Extension Settings #
#######################################
# Markdown
[*.{md,mdx}]
trim_trailing_whitespace = false
# JSON
[*.{json,json5,webmanifest}]
indent_size = 2
# YAML
[*.{yml,yaml,clang-format,clang-tidy}]
indent_size = 2
# CMake
[{CMakeLists.txt,*.cmake,*.rst}]
indent_size = 2
indent_style = space
# Makefile
[Makefile]
end_of_line = lf
indent_style = tab
# Visual Studio Solution
[*.sln]
indent_style = tab
# C/C++
[*.{c++,c,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}]
end_of_line = lf
# C#
[*.cs]
end_of_line = crlf
csharp_prefer_braces = true
# Pawn
[*.{inc,sma,sp}]
end_of_line = lf
# Python
[*.{py,py3}]
guidelines = 88