1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# EditorConfig configuration for liquidprompt
# http://EditorConfig.org
# Top-most EditorConfig file
root = true
[*]
charset = utf-8
indent_style = space
trim_trailing_whitespace = true
insert_final_newline = true
spelling_language = en-US
[liquidprompt,*.theme,*.bashrc,.*.conf,*.ps1,*.css,/tools/config-from-doc.sh]
indent_size = 4
max_line_length = 120
[*.sh,*.zsh,PKGBUILD]
indent_size = 2
max_line_length = 120
[*.py]
indent_size = 4
[*.md]
# Apparently trailing whitspaces are meaningfull in Markdown
trim_trailing_whitespace = false
[*.yml]
indent_size = 2
[*.bat]
indent_size = 8
indent_style = tab
[*.rst]
indent_size = 3
max_line_length = 80
|