.eslintrc-auto-import.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. "WritableComputedRef": true,
  12. "computed": true,
  13. "createApp": true,
  14. "customRef": true,
  15. "defineAsyncComponent": true,
  16. "defineComponent": true,
  17. "effectScope": true,
  18. "getCurrentInstance": true,
  19. "getCurrentScope": true,
  20. "h": true,
  21. "inject": true,
  22. "isProxy": true,
  23. "isReactive": true,
  24. "isReadonly": true,
  25. "isRef": true,
  26. "markRaw": true,
  27. "nextTick": true,
  28. "onActivated": true,
  29. "onBeforeMount": true,
  30. "onBeforeUnmount": true,
  31. "onBeforeUpdate": true,
  32. "onDeactivated": true,
  33. "onErrorCaptured": true,
  34. "onMounted": true,
  35. "onRenderTracked": true,
  36. "onRenderTriggered": true,
  37. "onScopeDispose": true,
  38. "onServerPrefetch": true,
  39. "onUnmounted": true,
  40. "onUpdated": true,
  41. "provide": true,
  42. "reactive": true,
  43. "readonly": true,
  44. "ref": true,
  45. "resolveComponent": true,
  46. "shallowReactive": true,
  47. "shallowReadonly": true,
  48. "shallowRef": true,
  49. "toRaw": true,
  50. "toRef": true,
  51. "toRefs": true,
  52. "toValue": true,
  53. "triggerRef": true,
  54. "unref": true,
  55. "useAttrs": true,
  56. "useCssModule": true,
  57. "useCssVars": true,
  58. "useSlots": true,
  59. "watch": true,
  60. "watchEffect": true,
  61. "watchPostEffect": true,
  62. "watchSyncEffect": true,
  63. "ExtractDefaultPropTypes": true,
  64. "ExtractPropTypes": true,
  65. "ExtractPublicPropTypes": true
  66. }
  67. }