autoimport with eslint now

This commit is contained in:
Julien Calixte
2023-08-14 18:04:27 +02:00
parent c0182c7f57
commit 2cab8c8e3f
51 changed files with 2121 additions and 4246 deletions

View File

@@ -1,3 +1,5 @@
import { computed, onMounted, onUnmounted, watch } from 'vue'
import { noteEventBus } from '@/bus/noteEventBus'
import { NOTE_WIDTH } from '@/constants/note-width'
import { useOverlay } from '@/hooks/useOverlay.hook'
@@ -5,7 +7,6 @@ import { useQueryStackedNotes } from '@/hooks/useQueryStackedNotes.hook'
import { resolvePath } from '@/modules/repo/services/resolvePath'
import { useUserRepoStore } from '@/modules/repo/store/userRepo.store'
import { pathToNotePathTitle } from '@/utils/noteTitle'
import { computed, onMounted, onUnmounted, watch } from 'vue'
export const useNote = (containerClass: string) => {
const store = useUserRepoStore()