const fabric = require('@umijs/fabric'); module.exports = { ...fabric.eslint, // in antd-design-pro globals: { ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: true, REACT_APP_ENV: true, page: true, }, editor: { codeActionsOnSave: true, }, rules: { // your rules ...fabric.eslint.rules, 'react/jsx-first-prop-new-line': 'error', semi: ['error', 'never'], indent: ['error', 2, { SwitchCase: 1 }], 'no-plusplus': 'off', 'react/sort-comp': 'off', 'no-unused-expressions': 'off', }, };