Skip to content

Commit f4084e1

Browse files
committed
Upgrade eslint
1 parent 0ff8c2d commit f4084e1

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
},
5353
"devDependencies": {
5454
"babel-eslint": "^6.0.2",
55-
"eslint": "2.9.0",
55+
"eslint": "~3.2.0",
5656
"eslint-loader": "^1.3.0",
5757
"tap-spec": "^4.1.1"
5858
},

src/redux/reducers.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1646,9 +1646,10 @@ export function recentGroups(state = [], action) {
16461646
switch (action.type) {
16471647
case response(ActionTypes.WHO_AM_I): {
16481648
const subscribers = (action.payload.subscribers || []);
1649-
return subscribers.filter(i => i.type == 'group')
1650-
.sort((i, j) => parseInt(j.updatedAt) - parseInt(i.updatedAt))
1651-
.slice(0, GROUPS_SIDEBAR_LIST_LENGTH);
1649+
return subscribers
1650+
.filter(i => i.type == 'group')
1651+
.sort((i, j) => parseInt(j.updatedAt) - parseInt(i.updatedAt))
1652+
.slice(0, GROUPS_SIDEBAR_LIST_LENGTH);
16521653
}
16531654
case response(ActionTypes.CREATE_GROUP): {
16541655
const newGroup = action.payload.groups;

src/utils/index.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,13 @@ const previousElementCheck = (index, array) => {
125125
};
126126

127127
export function getFirstLinkToEmbed(text) {
128-
return finder .parse(text)
129-
.filter(({type, text}, index, links) => {
130-
return (type === LINK
131-
&& /^https?:\/\//i.test(text)
132-
&& previousElementCheck(index, links));
133-
}).map(it => it.text)[0];
128+
return finder
129+
.parse(text)
130+
.filter(({type, text}, index, links) => {
131+
return (type === LINK
132+
&& /^https?:\/\//i.test(text)
133+
&& previousElementCheck(index, links));
134+
})
135+
.map(it => it.text)[0];
134136
};
135137

0 commit comments

Comments
 (0)