Skip to content

Commit 731790f

Browse files
committedJul 19, 2017
Merge branch 'beta-2.0.0'
2 parents 0fe2b44 + 8d58a4c commit 731790f

File tree

323 files changed

+16616
-8711
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+16616
-8711
lines changed
 

‎.eslintrc

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
},
55
"extends": "airbnb/base",
66
"rules": {
7+
"linebreak-style": 0,
8+
"import/no-extraneous-dependencies": 0, // TODO: remove once Webpack fixes it
9+
"import/no-unresolved": 0, // TODO: remove once Webpack fixes it
10+
"prefer-rest-params": 0,
11+
"no-fallthrough": 0,
12+
"no-case-declarations": 0,
713
"no-console": 0,
814
"no-plusplus": 0,
915
"no-mutable-exports": 0,
@@ -17,6 +23,7 @@
1723
}]
1824
},
1925
"globals": {
26+
"sinon": true,
2027
"before": true,
2128
"beforeEach": true,
2229
"after": true,

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55
dist
66
node_modules
77
.env*
8+
*.patch
9+
yarn.lock

0 commit comments

Comments
 (0)
Please sign in to comment.