blob: 856536052b703ecc928d70e6603edddc8f0dff0f [file] [log] [blame]
Matteo Scandolo7cd88ba2015-12-16 14:23:08 -08001# This file is for unifying the coding style for different editors and IDEs
2# editorconfig.org
3
4root = true
5
6[*]
7end_of_line = lf
8charset = utf-8
9trim_trailing_whitespace = true
10insert_final_newline = true
11
12# Tabs in JS unless otherwise specified
13[**.js]
14indent_style = space
15indent_size = 2
16
17[*.md]
18trim_trailing_whitespace = false