jetsung VSCode 中 tsx 文件双引号告警 Unexpected usage of doublequote.eslintjsx-quotes 告警内容 Unexpected usage of doublequote. eslintjsx-quotes 解决方法 在 .eslintrc 文件中添加以下内容 "jsx-quotes": [ "error", "single" ] 即为 { "rules": { "react/jsx-uses-react": "off", "react/react-in-jsx-scope": "off", "jsx-quotes": [ "error", "single" ] } }