.eslintrc.js 390 B

1234567891011
  1. module.exports = {
  2. parser: '@typescript-eslint/parser', //替代掉默认的Espree解析器
  3. plugins: ['react', '@typescript-eslint'], //包扩展支持React语法,提供额外的ts 语法的规则
  4. rules: {
  5. // 禁止使用 var
  6. 'no-var': 'error',
  7. // 优先使用 interface 而不是 type
  8. '@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
  9. },
  10. }