| 12345678910111213141516171819202122 |
- module.exports = {
- extends: [require.resolve('@umijs/fabric/dist/eslint')],
- globals: {
- ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: true,
- page: true,
- REACT_APP_ENV: true
- },
- rules: {
- 'semi': ['error', 'never'],
- 'no-multiple-empty-lines': [1, { max: 2 }],
- 'comma-dangle': [2, 'never'],
- 'react/prop-types': 0,
- 'spaced-comment': 'error',
- // 'array-bracket-spacing': ['error', 'always'], // 和prettier冲突
- 'object-curly-spacing': ['error', 'always'],
- "react/self-closing-comp": ["error", {
- "component": true,
- "html": true
- }],
- 'react-hooks/exhaustive-deps': 0
- }
- }
|