Skip to content

Commit f8a7a0a

Browse files
committed
chore: lint
1 parent 2cb3dcf commit f8a7a0a

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

packages/@core/base/shared/src/utils/date.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import dayjs from 'dayjs';
2-
import timezone from 'dayjs/plugin/timezone';
3-
import utc from 'dayjs/plugin/utc';
1+
import dayjs from "dayjs";
2+
import timezone from "dayjs/plugin/timezone";
3+
import utc from "dayjs/plugin/utc";
44

55
dayjs.extend(utc);
66
dayjs.extend(timezone);

packages/stores/src/modules/timezone.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
import { ref, unref } from 'vue';
1+
import { ref, unref } from "vue";
22

3-
import { DEFAULT_TIME_ZONE_OPTIONS } from '@vben-core/preferences';
4-
import {
5-
getCurrentTimezone,
6-
setCurrentTimezone,
7-
} from '@vben-core/shared/utils';
3+
import { DEFAULT_TIME_ZONE_OPTIONS } from "@vben-core/preferences";
4+
import { getCurrentTimezone, setCurrentTimezone } from "@vben-core/shared/utils";
85

9-
import { acceptHMRUpdate, defineStore } from 'pinia';
6+
import { acceptHMRUpdate, defineStore } from "pinia";
107

118
interface TimezoneHandler {
129
getTimezone?: () => Promise<null | string | undefined>;

0 commit comments

Comments
 (0)