You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc.js 215 B

2 years ago
2 years ago
12345678910
  1. module.exports = {
  2. extends: [require.resolve('@umijs/lint/dist/config/eslint')],
  3. globals: {
  4. page: true,
  5. REACT_APP_ENV: true,
  6. },
  7. rules: {
  8. '@typescript-eslint/no-use-before-define': 'off',
  9. },
  10. };