Prettier & eslint project style update

This commit is contained in:
Justin Reynolds 2019-06-28 12:52:09 -05:00
parent a0a482aa8e
commit 3eb4d2c341
116 changed files with 6216 additions and 5240 deletions

View file

@ -7,7 +7,7 @@ allowIsBoardMember = function(userId, board) {
};
allowIsAnyBoardMember = function(userId, boards) {
return _.some(boards, (board) => {
return _.some(boards, board => {
return board && board.hasMember(userId);
});
};