98 lines
1.3 KiB
INI
98 lines
1.3 KiB
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
root = true
|
|
|
|
# for all projects
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
# Python
|
|
[*.py]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# PHP
|
|
[*.php]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# Crystal
|
|
[{*.cr,shards.yml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# C
|
|
[{*.c,*.h}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# C++
|
|
[{*.cpp,*.ino,*.hpp}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# V
|
|
[{*.v,v.mod}]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
|
|
# JavaScript
|
|
[*.js]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[package.json]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# Web Sites
|
|
[{*.html,*.css,*.json}]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
|
|
[humans.txt]
|
|
indent_style = tab
|
|
indent_size = 2
|
|
|
|
# Markdown
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
# Other
|
|
[Makefile]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
|
|
[.gitconfig]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
|
|
# GameMaker
|
|
[*.gml]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
|
|
## for this repo
|
|
[~/SSH/config]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
|
|
[~/SublimeText/*.sublime-*]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
|
|
[snipplets/code/Gambas/*]
|
|
indent_size = 2
|
|
|
|
[snipplets/projects/Solar2D**]
|
|
indent_style = unset
|
|
indent_size = unset
|
|
end_of_line = unset
|
|
charset = unset
|
|
trim_trailing_whitespace = unset
|
|
insert_final_newline = unset
|