在样式化组件(CRA)中使用泛型时出现no-mixed-operators ESLint错误

时间:2020-07-06 23:04:01

标签: reactjs typescript create-react-app styled-components

我正在使用默认的(打字稿)create-react-app设置,并且遇到了一个问题,ESLint似乎对使用样式化组件的泛型对我感到困惑:

const StyledComponent = styled.div<{ prop: boolean }>`
   ...
`

我得到的错误在于小于字符,显示为:Unexpected mix of '<' and '>'.(no-mixed-operators)

似乎this link描述了这个问题,但我不知道该怎么办。

0 个答案:

没有答案