forked from IITC-CE/ingress-intel-total-conversion
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
21 lines (16 loc) · 624 Bytes
/
.editorconfig
File metadata and controls
21 lines (16 loc) · 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Specification available at: http://editorconfig.org
# Root config file for IITC.
root = true
[*.{js,py}]
charset = utf-8
indent_style = space
trim_trailing_whitespace = true
[*.js]
indent_size = 2
[*.py]
indent_size = 4
# Following JS code style rules do not have EditorConfig support yet:
# - Use identity operators (===) over equality operators (==).
# - Opening brace at end of line. e.g. "if (a) {", "} else {", "} else if (b) }"
# - No space between keyword and parentheses. "if(a)" not "if (a)"
# - Use single-quotes for strings, and double-quotes within strings for HTML attribute values. $('<div id="#me">').