154:9  error  Expected closing tag to match indentation of opening                           react/jsx-closing-tag-location
161:9 error The closing bracket must be aligned with the opening tag (expected column 17) react/jsx-closing-bracket-location
162:9 error Expected closing tag to match indentation of opening react/jsx-closing-tag-location

这是JSX格式错误,比如:

as.push(<a key={data.totalPage} className={style.paging_a_invalid}>
{this.t('todo:nextPage')}
</a> );

要写成:

as.push(
<a key={data.totalPage} className={style.paging_a_invalid}>
{this.t('todo:nextPage')}
</a> );

反正要对齐啦