Skip to content

Commit 60d9cdb

Browse files
committed
update dependencies
1 parent 22969c8 commit 60d9cdb

File tree

4 files changed

+703
-2850
lines changed

4 files changed

+703
-2850
lines changed

.editorconfig

+5-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,16 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
2-
3-
4-
# top-most EditorConfig file
51
root = true
62

7-
8-
# Unix-style newlines with a newline ending every file
93
[*]
10-
charset = utf-8
114
indent_style = space
125
indent_size = 2
13-
insert_final_newline = true
6+
charset = utf-8
147
trim_trailing_whitespace = true
15-
8+
insert_final_newline = true
169

1710
[*.md]
18-
indent_style = space
11+
# noinspection EditorConfigOptionRedundancy
1912
indent_size = 2
2013

21-
22-
[{package.json, package-lock.json}]
14+
[{package.json, bower.json}]
15+
# noinspection EditorConfigOptionRedundancy
2316
indent_size = 2

.eslintrc.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
3+
"parserOptions": {
4+
"sourceType": "script",
5+
"ecmaVersion": 5
6+
},
7+
8+
"env": {
9+
"browser": true,
10+
"node": false,
11+
"jest": false
12+
},
13+
14+
"extends": [
15+
"angular"
16+
],
17+
18+
"globals": {
19+
"Promise": false,
20+
"Symbol": false,
21+
"Proxy": false
22+
},
23+
24+
"rules": {
25+
"quotes": [
26+
2,
27+
"single"
28+
]
29+
}
30+
31+
}

0 commit comments

Comments
 (0)