index.tmpl: Update
[fbfp.git] / .editorconfig
bloba0cff7cf9b770f56015374f0fa6c04c0650068ac
1 root                     = true
3 [*]
4 end_of_line              = lf
5 charset                  = utf-8
6 trim_trailing_whitespace = true
7 insert_final_newline     = true
8 indent_style             = tab
9 tab_size                 = 8
10 # indent_size              = 8
12 [*.go]
13 max_line_length          = 80
15 [*.js]
16 max_line_length          = 80
18 [*.html]
19 tab_size                 = 4
21 [*.tmpl]
22 tab_size                 = 4
25 # Note: It is intentional here that JavaScript, HTML, and CSS are indented with
26 # tabs. I find the "standards" of indenting with two spaces to be confusing and
27 # unreadable, and I would prefer that things stay consistent with the rest of
28 # my code base.