bfdf073497a0f0c06101463d83ea79e4d50c9671
[platform/framework/web/crosswalk-tizen.git] /
1 ; EditorConfig is awesome: http://EditorConfig.org
2
3 ; top-most EditorConfig file
4 root = true
5
6 ; Unix-style newlines with a newline ending every file
7 [*]
8 end_of_line = lf
9 insert_final_newline = true
10 charset = utf-8
11 trim_trailing_whitespace = true
12
13 ; test files can have mized indent and there is no way to reset the value so we
14 ; only add to files/folders that need it
15 [lib/**]
16 indent_style = space
17 indent_size = 2
18
19 [bin/*]
20 indent_style = space
21 indent_size = 2
22
23 [test/*.js]
24 indent_style = space
25 indent_size = 2
26
27 [package.json]
28 indent_style = space
29 indent_size = 2
30
31 ; The test files can have mixed indent, tailing white space, etc...
32 [test/compare/**]
33 insert_final_newline = false
34 trim_trailing_whitespace = false
35