; EditorConfig is awesome: http://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
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true

; The default indent on package.json is 2 spaces, better to keep it so we can
; use `npm install --save` and other features that rewrites the package.json
; file automatically
[package.json]
indent_style = space
indent_size = 2

; The test files can have mixed indent, tailing white space, etc...
[test/compare/**]
insert_final_newline = false
trim_trailing_whitespace = false

