Taro使用双引号爆红的 eslint 配置

在这里插入图片描述
.eslintrc

{
    
    
  "extends": ["taro/react"],
  "rules": {
    
    
    "react/jsx-uses-react": "off",
    "react/react-in-jsx-scope": "off",
    // "quotes": ["error", "double"],
    "jsx-quotes": ["error", "prefer-double"]
  }
}

.prettierrc.js

module.exports = {
    
    
  tabWidth: 2,
  useTabs: false,
  singleQuote: false,
};

猜你喜欢

转载自blog.csdn.net/yiguoxiaohai/article/details/129257518
今日推荐