.eslint-auto-import.mjs 2.3 KB

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