.eslint-auto-import.mjs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. "Slot": true,
  21. "Slots": true,
  22. "T": true,
  23. "VNode": true,
  24. "WritableComputedRef": true,
  25. "acceptHMRUpdate": true,
  26. "computed": true,
  27. "createApp": true,
  28. "createPinia": true,
  29. "customRef": true,
  30. "defineAsyncComponent": true,
  31. "defineComponent": true,
  32. "defineStore": true,
  33. "effectScope": true,
  34. "getActivePinia": true,
  35. "getCurrentInstance": true,
  36. "getCurrentScope": true,
  37. "h": true,
  38. "inject": true,
  39. "isProxy": true,
  40. "isReactive": true,
  41. "isReadonly": true,
  42. "isRef": true,
  43. "mapActions": true,
  44. "mapGetters": true,
  45. "mapState": true,
  46. "mapStores": true,
  47. "mapWritableState": true,
  48. "markRaw": true,
  49. "nextTick": true,
  50. "onActivated": true,
  51. "onBeforeMount": true,
  52. "onBeforeRouteLeave": true,
  53. "onBeforeRouteUpdate": true,
  54. "onBeforeUnmount": true,
  55. "onBeforeUpdate": true,
  56. "onDeactivated": true,
  57. "onErrorCaptured": true,
  58. "onMounted": true,
  59. "onRenderTracked": true,
  60. "onRenderTriggered": true,
  61. "onScopeDispose": true,
  62. "onServerPrefetch": true,
  63. "onUnmounted": true,
  64. "onUpdated": true,
  65. "onWatcherCleanup": true,
  66. "provide": true,
  67. "reactive": true,
  68. "readonly": true,
  69. "ref": true,
  70. "resolveComponent": true,
  71. "setActivePinia": true,
  72. "setMapStoreSuffix": true,
  73. "shallowReactive": true,
  74. "shallowReadonly": true,
  75. "shallowRef": true,
  76. "storeToRefs": true,
  77. "toRaw": true,
  78. "toRef": true,
  79. "toRefs": true,
  80. "toValue": true,
  81. "triggerRef": true,
  82. "unref": true,
  83. "useAttrs": true,
  84. "useCssModule": true,
  85. "useCssVars": true,
  86. "useId": true,
  87. "useLink": true,
  88. "useModel": true,
  89. "useRoute": true,
  90. "useRouter": true,
  91. "useSlots": true,
  92. "useTemplateRef": true,
  93. "watch": true,
  94. "watchEffect": true,
  95. "watchPostEffect": true,
  96. "watchSyncEffect": true
  97. }
  98. }