mirror of
https://github.com/plankanban/planka.git
synced 2025-07-22 14:49:43 +02:00
Move from prettier-eslint to eslint-plugin-prettier, update dependencies
This commit is contained in:
parent
f0e7fb8fd1
commit
9c7c96a780
254 changed files with 5539 additions and 5170 deletions
|
@ -1,6 +1,4 @@
|
|||
import {
|
||||
Model, attr, fk, many,
|
||||
} from 'redux-orm';
|
||||
import { Model, attr, fk, many } from 'redux-orm';
|
||||
|
||||
import ActionTypes from '../constants/ActionTypes';
|
||||
import Config from '../constants/Config';
|
||||
|
@ -55,7 +53,7 @@ export default class extends Model {
|
|||
|
||||
break;
|
||||
case ActionTypes.BOARD_FETCH_SUCCEEDED:
|
||||
payload.cards.forEach((card) => {
|
||||
payload.cards.forEach(card => {
|
||||
Card.upsert(card);
|
||||
});
|
||||
|
||||
|
@ -134,7 +132,7 @@ export default class extends Model {
|
|||
|
||||
break;
|
||||
case ActionTypes.NOTIFICATIONS_FETCH_SUCCEEDED:
|
||||
payload.cards.forEach((card) => {
|
||||
payload.cards.forEach(card => {
|
||||
Card.upsert(card);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue