mirror of
https://github.com/Aviortheking/remote-firmware.git
synced 2025-04-22 02:42:11 +00:00
41 lines
750 B
INI
41 lines
750 B
INI
#############################################
|
|
# EditorConfig #
|
|
# cross-platform Editor basic configuration #
|
|
#############################################
|
|
|
|
# make the editor config file not search in upper folders
|
|
root = true
|
|
|
|
# Base Configuration
|
|
[*]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
max_line_length = 120
|
|
end_of_line = lf
|
|
|
|
# Yaml Standard
|
|
[*.{yaml,yml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# Markdown Standards
|
|
[*.md]
|
|
indent_style = space
|
|
indent_size = 2
|
|
trim_trailing_whitespace = false
|
|
|
|
# C++ Standards
|
|
[*.{cpp,h,ino}]
|
|
indent_style = space
|
|
|
|
# PHP Standards
|
|
[*.php]
|
|
indent_style = space
|
|
|
|
# INI file Standards
|
|
[*.ini]
|
|
indent_style = space
|