Build: Fix code style issue
[jquery.git] / .editorconfig
blobd06e31850afcd496c0dfdd315dba53b1a6f7eac0
1 # This file is for unifying the coding style for different editors and IDEs
2 # editorconfig.org
4 root = true
7 [*]
8 end_of_line = lf
9 charset = utf-8
10 trim_trailing_whitespace = true
11 insert_final_newline = true
13 # Tabs in JS unless otherwise specified
14 [**.js]
15 indent_style = tab
17 [Makefile]
18 indent_style = tab
21 [speed/**.html]
22 indent_style = tab
24 [speed/**.css]
25 indent_style = tab
27 [speed/benchmarker.js]
28 indent_style = space
29 indent_size = 2
32 [test/**.xml]
33 indent_style = tab
35 [test/**.php]
36 indent_style = tab
38 [test/**.html]
39 indent_style = tab
41 [test/**.css]
42 indent_style = space
43 indent_size = 8