标签: reactjs typescript create-react-app styled-components
我正在使用默认的(打字稿)create-react-app设置,并且遇到了一个问题,ESLint似乎对使用样式化组件的泛型对我感到困惑:
const StyledComponent = styled.div<{ prop: boolean }>` ... `
我得到的错误在于小于字符,显示为:Unexpected mix of '<' and '>'.(no-mixed-operators)
Unexpected mix of '<' and '>'.(no-mixed-operators)
似乎this link描述了这个问题,但我不知道该怎么办。