.eslintrc.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // https://blog.csdn.net/Sheng_zhenzhen/article/details/108685176
  2. module.exports = {
  3. root: true,
  4. env: {
  5. browser: true,
  6. commonjs: true,
  7. es6: true,
  8. node: true
  9. },
  10. globals: {
  11. defineEmits: true,
  12. document: true,
  13. localStorage: true,
  14. GLOBAL_VAR: true,
  15. window: true,
  16. defineProps: true,
  17. defineExpose: true,
  18. defineOptions: true,
  19. $ref: true
  20. },
  21. plugins: ['@typescript-eslint', 'prettier', 'import'],
  22. extends: [
  23. 'eslint:recommended',
  24. 'plugin:@typescript-eslint/recommended',
  25. 'plugin:vue/vue3-recommended',
  26. 'prettier',
  27. './.eslintrc-auto-import.json'
  28. // './tests/.eslintrc-unit-test.json'
  29. ],
  30. parserOptions: {
  31. parser: '@typescript-eslint/parser',
  32. sourceType: 'module',
  33. ecmaFeatures: {
  34. jsx: true,
  35. tsx: true
  36. }
  37. },
  38. rules: {
  39. //close lf error
  40. 'import/no-unresolved': [0],
  41. 'vue/multi-word-component-names': 'off',
  42. 'vue/no-deprecated-router-link-tag-prop': 'off',
  43. 'import/extensions': 'off',
  44. 'import/no-absolute-path': 'off',
  45. 'no-async-promise-executor': 'off',
  46. 'import/no-extraneous-dependencies': 'off',
  47. 'vue/no-multiple-template-root': 'off',
  48. 'vue/html-self-closing': 'off',
  49. 'no-console': 'off',
  50. 'no-plusplus': 'off',
  51. 'no-useless-escape': 'off',
  52. 'no-bitwise': 'off',
  53. '@typescript-eslint/no-explicit-any': ['off'],
  54. '@typescript-eslint/explicit-module-boundary-types': ['off'],
  55. '@typescript-eslint/ban-ts-comment': ['off'],
  56. 'vue/no-setup-props-destructure': ['off'],
  57. '@typescript-eslint/no-empty-function': ['off'],
  58. 'vue/script-setup-uses-vars': ['off'],
  59. //can config to 2 if need more then required
  60. '@typescript-eslint/no-unused-vars': [0],
  61. 'no-param-reassign': ['off']
  62. }
  63. }