1
0

.eslint-auto-import.mjs 2.3 KB

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