mirror of
https://github.com/GwynethLlewelyn/goswi.git
synced 2026-08-14 00:58:00 +00:00
35 lines
662 B
INI
35 lines
662 B
INI
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unix-style newlines with a newline ending every file
|
|
[*]
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
indent_style = tab
|
|
indent_size = tab
|
|
tab_width = 4
|
|
trim_trailing_whitespace = true
|
|
|
|
# The property below is not yet universally supported
|
|
[*.md]
|
|
max_line_length = 108
|
|
word_wrap = true
|
|
# Markdown sometimes uses two spaces at the end to
|
|
# mark soft line breaks
|
|
trim_trailing_whitespace = false
|
|
|
|
[*.css]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
[*.{yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
tab_width = 2
|
|
|
|
# apparently ESLint dislikes tabs and wants indents of 2 spaces
|
|
[*js]
|
|
indent_style = space
|
|
indent_size = 2
|
|
tab_width = 2
|