# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Set default charset
charset = utf-8

# Automatically removes end-of-line whitespace
trim_trailing_whitespace = true

# Tndent character use space
indent_style = space

# Tab indentation (no size specified)
[Makefile]
tab_width = 2
indent_style = tab

# Matches the exact files either package.json or .travis.yml
[package.json]
indent_style = space
indent_size = 2

# windows file use crlf end-of-line
[*.{cmd,bat}]
end_of_line = crlf
