.eslintrc-auto-import.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "globals": {
  3. "Component": true,
  4. "ComponentPublicInstance": true,
  5. "ComputedRef": true,
  6. "EffectScope": true,
  7. "InjectionKey": true,
  8. "PropType": true,
  9. "Ref": true,
  10. "VNode": true,
  11. "computed": true,
  12. "createApp": true,
  13. "customRef": true,
  14. "defineAsyncComponent": true,
  15. "defineComponent": true,
  16. "effectScope": true,
  17. "getCurrentInstance": true,
  18. "getCurrentScope": true,
  19. "h": true,
  20. "inject": true,
  21. "isProxy": true,
  22. "isReactive": true,
  23. "isReadonly": true,
  24. "isRef": true,
  25. "markRaw": true,
  26. "nextTick": true,
  27. "onActivated": true,
  28. "onBeforeMount": true,
  29. "onBeforeRouteLeave": true,
  30. "onBeforeRouteUpdate": true,
  31. "onBeforeUnmount": true,
  32. "onBeforeUpdate": true,
  33. "onDeactivated": true,
  34. "onErrorCaptured": true,
  35. "onMounted": true,
  36. "onRenderTracked": true,
  37. "onRenderTriggered": true,
  38. "onScopeDispose": true,
  39. "onServerPrefetch": true,
  40. "onUnmounted": true,
  41. "onUpdated": true,
  42. "provide": true,
  43. "reactive": true,
  44. "readonly": true,
  45. "ref": true,
  46. "resolveComponent": true,
  47. "shallowReactive": true,
  48. "shallowReadonly": true,
  49. "shallowRef": true,
  50. "toRaw": true,
  51. "toRef": true,
  52. "toRefs": true,
  53. "toValue": true,
  54. "triggerRef": true,
  55. "unref": true,
  56. "useAttrs": true,
  57. "useCssModule": true,
  58. "useCssVars": true,
  59. "useLink": true,
  60. "useRoute": true,
  61. "useRouter": true,
  62. "useSlots": true,
  63. "watch": true,
  64. "watchEffect": true,
  65. "watchPostEffect": true,
  66. "watchSyncEffect": true,
  67. "ExtractDefaultPropTypes": true,
  68. "ExtractPropTypes": true,
  69. "ExtractPublicPropTypes": true,
  70. "WritableComputedRef": true,
  71. "DirectiveBinding": true,
  72. "MaybeRef": true,
  73. "MaybeRefOrGetter": true,
  74. "onWatcherCleanup": true,
  75. "useId": true,
  76. "useModel": true,
  77. "useTemplateRef": true
  78. }
  79. }