File tree 1 file changed +44
-0
lines changed
1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ ; This file is for unifying the coding style for different editors and IDEs.
2
+ ; More information at http://EditorConfig.org
3
+
4
+
5
+ ; Use 2 spaces for indentation in SCSS, JavaScript, HTML, and XML
6
+
7
+ [* .scss ]
8
+ indent_style = space
9
+ indent_size = 2
10
+
11
+ [* .js ]
12
+ indent_style = space
13
+ indent_size = 2
14
+
15
+ [* .html ]
16
+ indent_style = space
17
+ indent_size = 2
18
+
19
+ [* .xml ]
20
+ indent_style = space
21
+ indent_size = 2
22
+
23
+
24
+ ; Use 4 spaces for indentation in Markdown files
25
+
26
+ [* .md ]
27
+ indent_style = space
28
+ indent_size = 4
29
+
30
+ [* .markdown ]
31
+ indent_style = space
32
+ indent_size = 4
33
+
34
+
35
+ ; Override default indentation for some library files
36
+
37
+ [jwplayer/glow/glow.xml ]
38
+ indent_style = tab
39
+
40
+ [libs/jXHR.js ]
41
+ indent_style = tab
42
+
43
+ [libs/swfobject-dynamic.js ]
44
+ indent_style = tab
You can’t perform that action at this time.
0 commit comments