Results 2 issues of Wills

like https://github.com/styled-components/stylelint-processor-styled-components/issues/159 said: Stylelint not working with `withConfig`. Since v5.1, new `shouldForwardProp` API is supported , which need to use `withConfig`.

https://codesandbox.io/s/condescending-poitras-zp2t7?file=/src/App.js ```js import React, { useState, useMemo } from "react"; import { useMemoOne } from "use-memo-one"; import "./styles.css"; export default function App() { const [state, setState] = useState(0); const [count,...