-
Notifications
You must be signed in to change notification settings - Fork 357
/
.editorconfig
48 lines (39 loc) · 1.3 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# EditorConfig helps developers define and maintain consistent coding styles
# between different editors and IDEs.
# EditorConig has support in a wide range of text editors. You can view a
# complete list—or download a plugin—at the EditorConfig website:
# http://editorconfig.org/#download
# More about editorconfig files on their website: http://EditorConfig.org
# For now, this is the topmost editor config file.
# Set to false if aria repo gets one.
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = "utf-8"
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.{html,css,js}]
indent_style = space
indent_size = 2
block_comment_start = /*
block_comment = *
block_comment_end = */
[*.md]
trim_trailing_whitespace = false
# Ignore third party content
[{/common/**,/examples/landmarks/js/visua11y.js,/examples/landmarks/css/bootstrap.css,/examples/landmarks/css/bootstrap-accessibility.css,/examples/menubar/menubar-1/images/separator.paint}]
charset = unset
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset
indent_size = unset
# Ignore minfied files
[*.{min.js,pack.js}]
charset = unset
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset
indent_size = unset