.eslint-auto-import.mjs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. export default {
  2. "globals": {
  3. "$gettext": true,
  4. "$ngettext": true,
  5. "$npgettext": true,
  6. "$pgettext": true,
  7. "Component": true,
  8. "ComponentPublicInstance": true,
  9. "ComputedRef": true,
  10. "DirectiveBinding": true,
  11. "EffectScope": true,
  12. "ExtractDefaultPropTypes": true,
  13. "ExtractPropTypes": true,
  14. "ExtractPublicPropTypes": true,
  15. "InjectionKey": true,
  16. "MaybeRef": true,
  17. "MaybeRefOrGetter": true,
  18. "PropType": true,
  19. "Ref": true,
  20. "ShallowRef": true,
  21. "Slot": true,
  22. "Slots": true,
  23. "T": true,
  24. "VNode": true,
  25. "WritableComputedRef": true,
  26. "acceptHMRUpdate": true,
  27. "computed": true,
  28. "createApp": true,
  29. "createPinia": true,
  30. "customRef": true,
  31. "defineAsyncComponent": true,
  32. "defineComponent": true,
  33. "defineStore": true,
  34. "effectScope": true,
  35. "getActivePinia": true,
  36. "getCurrentInstance": true,
  37. "getCurrentScope": true,
  38. "getCurrentWatcher": true,
  39. "h": true,
  40. "inject": true,
  41. "isProxy": true,
  42. "isReactive": true,
  43. "isReadonly": true,
  44. "isRef": true,
  45. "isShallow": true,
  46. "mapActions": true,
  47. "mapGetters": true,
  48. "mapState": true,
  49. "mapStores": true,
  50. "mapWritableState": true,
  51. "markRaw": true,
  52. "nextTick": true,
  53. "onActivated": true,
  54. "onBeforeMount": true,
  55. "onBeforeRouteLeave": true,
  56. "onBeforeRouteUpdate": true,
  57. "onBeforeUnmount": true,
  58. "onBeforeUpdate": true,
  59. "onDeactivated": true,
  60. "onErrorCaptured": true,
  61. "onMounted": true,
  62. "onRenderTracked": true,
  63. "onRenderTriggered": true,
  64. "onScopeDispose": true,
  65. "onServerPrefetch": true,
  66. "onUnmounted": true,
  67. "onUpdated": true,
  68. "onWatcherCleanup": true,
  69. "provide": true,
  70. "reactive": true,
  71. "readonly": true,
  72. "ref": true,
  73. "resolveComponent": true,
  74. "setActivePinia": true,
  75. "setMapStoreSuffix": true,
  76. "shallowReactive": true,
  77. "shallowReadonly": true,
  78. "shallowRef": true,
  79. "storeToRefs": true,
  80. "toRaw": true,
  81. "toRef": true,
  82. "toRefs": true,
  83. "toValue": true,
  84. "triggerRef": true,
  85. "unref": true,
  86. "useAttrs": true,
  87. "useCssModule": true,
  88. "useCssVars": true,
  89. "useId": true,
  90. "useLink": true,
  91. "useModel": true,
  92. "useRoute": true,
  93. "useRouter": true,
  94. "useSlots": true,
  95. "useTemplateRef": true,
  96. "watch": true,
  97. "watchEffect": true,
  98. "watchPostEffect": true,
  99. "watchSyncEffect": true
  100. }
  101. }