.eslintrc.js 197B

12345678
  1. module.exports = {
  2. "extends": ["taro/react"],
  3. "rules": {
  4. "react/jsx-uses-react": "off",
  5. "react/react-in-jsx-scope": "off",
  6. "import/first": ['error', 'DISABLE-absolute-first']
  7. }
  8. }