您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.eslintrc.js 332B

123456789101112131415
  1. module.exports = {
  2. parser: '@typescript-eslint/parser',
  3. plugins: ['@typescript-eslint'],
  4. globals: {
  5. uni: true,
  6. wx: true
  7. },
  8. rules: {
  9. 'no-debugger': 2,
  10. // 禁止使用 var
  11. 'no-var': 'error',
  12. // 优先使用 interface 而不是 type
  13. // '@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
  14. },
  15. }