考虑以下声明:
export const sort = (state = 'SORTED_BY_DATE', action) => {
switch (action.type) {
case C.SORT_COLORS:
return action.sortBy
default:
return state
}
}
我收到错误(考虑行return state
):
error Expected indentation of 2 spaces but found 4 indent
它还可以将switch
语句左移两个空格。
我该如何解决这个问题?
答案 0 :(得分:0)
需要更新选项SwitchCase: 1