pixi-learning/.editorconfig

72 lines
953 B
INI
Raw Normal View History

2022-08-15 02:58:54 +03:00
# EditorConfig is awesome: https://EditorConfig.org
2022-08-11 00:10:26 +03:00
root = true
2022-08-15 02:58:54 +03:00
# for all projects
2022-08-11 00:10:26 +03:00
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
2022-08-15 02:58:54 +03:00
# Python
[*.py]
indent_style = space
indent_size = 4
# PHP
[*.php]
indent_style = space
indent_size = 4
# Crystal
[*.cr]
indent_style = space
indent_size = 2
# C
[{*.c,*.h}]
indent_style = space
indent_size = 4
# Web Sites
2022-08-11 00:10:26 +03:00
[{*.html,*.css,*.json}]
indent_style = tab
indent_size = 4
2022-08-15 02:58:54 +03:00
[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
# JavaScript
2022-08-11 00:10:26 +03:00
[*.js]
indent_style = space
indent_size = 2
2022-08-15 02:58:54 +03:00
[package.json]
indent_style = space
indent_size = 2
## for this repo
[~/SSH/config]
indent_style = tab
indent_size = 4
[~/SublimeText/*.sublime-*]
indent_style = tab
indent_size = 4