biome check --write
This commit is contained in:
parent
9262e803ec
commit
b05a501236
225 changed files with 1177 additions and 1266 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { useOAuthStore } from 'src/stores/oauth.js'
|
||||
import { defineStore } from 'pinia'
|
||||
import { useOAuthStore } from 'src/stores/oauth.js'
|
||||
|
||||
const PASSWORD_STRATEGY = 'password'
|
||||
const TOKEN_STRATEGY = 'token'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { remove, find } from 'lodash'
|
||||
import { find, remove } from 'lodash'
|
||||
import { defineStore } from 'pinia'
|
||||
|
||||
export const useBookmarkFoldersStore = defineStore('bookmarkFolders', {
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@ import {
|
|||
CURRENT_VERSION,
|
||||
generatePreset,
|
||||
} from 'src/services/theme_data/theme_data.service.js'
|
||||
import { convertTheme2To3 } from 'src/services/theme_data/theme2_to_theme3.js'
|
||||
import {
|
||||
getResourcesIndex,
|
||||
applyTheme,
|
||||
getResourcesIndex,
|
||||
tryLoadCache,
|
||||
} from '../services/style_setter/style_setter.js'
|
||||
import { convertTheme2To3 } from 'src/services/theme_data/theme2_to_theme3.js'
|
||||
import { deserialize } from '../services/theme_data/iss_deserializer.js'
|
||||
|
||||
export const useInterfaceStore = defineStore('interface', {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { find, remove } from 'lodash'
|
||||
import { defineStore } from 'pinia'
|
||||
|
||||
import { remove, find } from 'lodash'
|
||||
|
||||
export const useListsStore = defineStore('lists', {
|
||||
state: () => ({
|
||||
allLists: [],
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
import { defineStore } from 'pinia'
|
||||
|
||||
import filter from 'lodash/filter'
|
||||
import { defineStore } from 'pinia'
|
||||
import { useInterfaceStore } from 'src/stores/interface'
|
||||
|
||||
export const useReportsStore = defineStore('reports', {
|
||||
|
|
|
|||
|
|
@ -1,20 +1,20 @@
|
|||
import { defineStore } from 'pinia'
|
||||
import { toRaw } from 'vue'
|
||||
import {
|
||||
isEqual,
|
||||
cloneDeep,
|
||||
set,
|
||||
unset,
|
||||
get,
|
||||
merge as _merge,
|
||||
clamp,
|
||||
flatten,
|
||||
groupBy,
|
||||
cloneDeep,
|
||||
findLastIndex,
|
||||
flatten,
|
||||
get,
|
||||
groupBy,
|
||||
isEqual,
|
||||
set,
|
||||
takeRight,
|
||||
uniqWith,
|
||||
merge as _merge,
|
||||
unset,
|
||||
} from 'lodash'
|
||||
import { defineStore } from 'pinia'
|
||||
import { CURRENT_UPDATE_COUNTER } from 'src/components/update_notification/update_notification.js'
|
||||
import { toRaw } from 'vue'
|
||||
|
||||
export const VERSION = 1
|
||||
export const NEW_USER_DATE = new Date('2022-08-04') // date of writing this, basically
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue