Browse Source

Add .editorconfig

pull/4/head
Vladimir Barkasov 6 years ago
parent
commit
bcbb6b6e72
1 changed files with 34 additions and 0 deletions
  1. +34
    -0
      .editorconfig

+ 34
- 0
.editorconfig View File

@ -0,0 +1,34 @@
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
# Indent_style (tab|space)
indent_style = tab
# Indentation Size
indent_size = tab
# Width of a single tabstop character
tab_width = 4
# Line ending file format (lf|crlf|cr)
end_of_line = crlf
# File character encoding (latin1|utf-8|utf-16be|utf-16le)
charset = utf-8
# Denotes whether whitespace is allowed at the end of lines (true|false)
trim_trailing_whitespace = true
# Denotes whether file should end with a newline (true|false)
insert_final_newline = true
[*.md]
indent_style = space
indent_size = 2
tab_width = 2
[*.js]
quote_type = single

Loading…
Cancel
Save