123456789101112131415161718192021 |
- 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: {
- // Note: you must disable the base rule as it can report incorrect errors
- 'no-unused-expressions': 'off',
- '@typescript-eslint/no-unused-expressions': 'off',
- '@typescript-eslint/ban-types': 'off',
- 'react/no-array-index-key': 'off',
- 'no-unused-vars': 'off',
- '@typescript-eslint/no-unused-vars': 'off',
- '@typescript-eslint/no-this-alias': 'off',
- },
- }
|