Skip to content

Commit baf63ac

Browse files
hooraysadeghbarati
andauthored
chore: remove extra blank lines (#1419)
* chore: remove extra blank lines * chore: bump eslint * chore: lint --------- Co-authored-by: Sadegh Barati <[email protected]>
1 parent e30a9ab commit baf63ac

File tree

249 files changed

+4593
-4598
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+4593
-4598
lines changed

apps/v4/components/BlockViewerToolbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
import { useBlockViewer } from './BlockViewer.vue'
2121
2222
const { view, item, iframeKey, resizablePanelRef }
23-
= useBlockViewer()
23+
= useBlockViewer()
2424
2525
const { copy, copied } = useClipboard()
2626
</script>

apps/v4/components/ColorFormatSelector.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<script setup lang="ts">
22
import type { HTMLAttributes } from 'vue'
33
4-
import { type Color, type ColorFormat, getColorFormat } from '@/lib/colors'
4+
import type { Color, ColorFormat } from '@/lib/colors'
5+
import { getColorFormat } from '@/lib/colors'
56
import { cn } from '@/lib/utils'
67
import {
78
Select,

apps/v4/components/Icons.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
import type { VNode } from 'vue'
12
import { FileIcon } from 'lucide-vue-next'
2-
import { defineComponent, h, type VNode } from 'vue'
3+
import { defineComponent, h } from 'vue'
34

45
interface IconProps {
56
class?: string

apps/v4/components/cards/ActivityGoal.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script setup lang="ts">
2+
import type { ChartConfig } from '~/registry/new-york-v4/ui/chart'
23
import { VisStackedBar, VisXYContainer } from '@unovis/vue'
34
import { Minus, Plus } from 'lucide-vue-next'
45
import { ref } from 'vue'
@@ -11,7 +12,7 @@ import {
1112
CardHeader,
1213
CardTitle,
1314
} from '@/registry/new-york-v4/ui/card'
14-
import { type ChartConfig, ChartContainer } from '~/registry/new-york-v4/ui/chart'
15+
import { ChartContainer } from '~/registry/new-york-v4/ui/chart'
1516
1617
const goal = ref(350)
1718

apps/v4/components/cards/Calendar.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
2-
import { CalendarDate, type DateValue, fromDate, getLocalTimeZone } from '@internationalized/date'
2+
import type { DateValue } from '@internationalized/date'
3+
import { CalendarDate, fromDate, getLocalTimeZone } from '@internationalized/date'
34
import { Card, CardContent } from '@/registry/new-york-v4/ui/card'
45
import { RangeCalendar } from '@/registry/new-york-v4/ui/range-calendar'
56

apps/v4/components/cards/ExerciseMinutes.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script setup lang="ts">
2+
import type { ChartConfig } from '~/registry/new-york-v4/ui/chart'
23
import { Line, Scatter } from '@unovis/ts'
34
import { VisAxis, VisCrosshair, VisLine, VisScatter, VisTooltip, VisXYContainer } from '@unovis/vue'
45
import {
@@ -8,7 +9,7 @@ import {
89
CardHeader,
910
CardTitle,
1011
} from '@/registry/new-york-v4/ui/card'
11-
import { type ChartConfig, ChartContainer, componentToString } from '~/registry/new-york-v4/ui/chart'
12+
import { ChartContainer, componentToString } from '~/registry/new-york-v4/ui/chart'
1213
import ChartTooltipContent from '~/registry/new-york-v4/ui/chart/ChartTooltipContent.vue'
1314
1415
type Data = typeof data[number]

apps/v4/components/content/Callout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<script setup lang="ts">
22
import type { HTMLAttributes } from 'vue'
3+
import type { AlertVariants } from '@/registry/new-york-v4/ui/alert'
34
import { cn } from '@/lib/utils'
45
import {
56
Alert,
67
AlertDescription,
78
AlertTitle,
8-
type AlertVariants,
99
} from '@/registry/new-york-v4/ui/alert'
1010
1111
const props = defineProps<{

apps/v4/components/demo/CalendarDemo.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
2-
import { type DateValue, fromDate, getLocalTimeZone } from '@internationalized/date'
2+
import type { DateValue } from '@internationalized/date'
3+
import { fromDate, getLocalTimeZone } from '@internationalized/date'
34
import { Calendar } from '@/registry/new-york-v4/ui/calendar'
45
56
const date = ref(fromDate(new Date(), getLocalTimeZone())) as Ref<DateValue>

apps/v4/components/demo/DatePickerDemo.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
2-
import { DateFormatter, type DateValue, getLocalTimeZone } from '@internationalized/date'
2+
import type { DateValue } from '@internationalized/date'
3+
import { DateFormatter, getLocalTimeZone } from '@internationalized/date'
34
45
import { CalendarIcon } from 'lucide-vue-next'
56
import { cn } from '@/lib/utils'

apps/v4/registry/new-york-v4/blocks/dashboard-01/components/AppSidebar.vue

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ import {
1414
IconSearch,
1515
IconSettings,
1616
IconUsers,
17-
} from '@tabler/icons-vue'
17+
} from "@tabler/icons-vue"
1818
19-
import NavDocuments from '@/registry/new-york-v4/blocks/dashboard-01/components/NavDocuments.vue'
20-
import NavMain from '@/registry/new-york-v4/blocks/dashboard-01/components/NavMain.vue'
21-
import NavSecondary from '@/registry/new-york-v4/blocks/dashboard-01/components/NavSecondary.vue'
22-
import NavUser from '@/registry/new-york-v4/blocks/dashboard-01/components/NavUser.vue'
19+
import NavDocuments from "@/registry/new-york-v4/blocks/dashboard-01/components/NavDocuments.vue"
20+
import NavMain from "@/registry/new-york-v4/blocks/dashboard-01/components/NavMain.vue"
21+
import NavSecondary from "@/registry/new-york-v4/blocks/dashboard-01/components/NavSecondary.vue"
22+
import NavUser from "@/registry/new-york-v4/blocks/dashboard-01/components/NavUser.vue"
2323
import {
2424
Sidebar,
2525
SidebarContent,
@@ -28,120 +28,120 @@ import {
2828
SidebarMenu,
2929
SidebarMenuButton,
3030
SidebarMenuItem,
31-
} from '@/registry/new-york-v4/ui/sidebar'
31+
} from "@/registry/new-york-v4/ui/sidebar"
3232
3333
const data = {
3434
user: {
35-
name: 'shadcn',
36-
37-
avatar: '/avatars/shadcn.jpg',
35+
name: "shadcn",
36+
37+
avatar: "/avatars/shadcn.jpg",
3838
},
3939
navMain: [
4040
{
41-
title: 'Dashboard',
42-
url: '#',
41+
title: "Dashboard",
42+
url: "#",
4343
icon: IconDashboard,
4444
},
4545
{
46-
title: 'Lifecycle',
47-
url: '#',
46+
title: "Lifecycle",
47+
url: "#",
4848
icon: IconListDetails,
4949
},
5050
{
51-
title: 'Analytics',
52-
url: '#',
51+
title: "Analytics",
52+
url: "#",
5353
icon: IconChartBar,
5454
},
5555
{
56-
title: 'Projects',
57-
url: '#',
56+
title: "Projects",
57+
url: "#",
5858
icon: IconFolder,
5959
},
6060
{
61-
title: 'Team',
62-
url: '#',
61+
title: "Team",
62+
url: "#",
6363
icon: IconUsers,
6464
},
6565
],
6666
navClouds: [
6767
{
68-
title: 'Capture',
68+
title: "Capture",
6969
icon: IconCamera,
7070
isActive: true,
71-
url: '#',
71+
url: "#",
7272
items: [
7373
{
74-
title: 'Active Proposals',
75-
url: '#',
74+
title: "Active Proposals",
75+
url: "#",
7676
},
7777
{
78-
title: 'Archived',
79-
url: '#',
78+
title: "Archived",
79+
url: "#",
8080
},
8181
],
8282
},
8383
{
84-
title: 'Proposal',
84+
title: "Proposal",
8585
icon: IconFileDescription,
86-
url: '#',
86+
url: "#",
8787
items: [
8888
{
89-
title: 'Active Proposals',
90-
url: '#',
89+
title: "Active Proposals",
90+
url: "#",
9191
},
9292
{
93-
title: 'Archived',
94-
url: '#',
93+
title: "Archived",
94+
url: "#",
9595
},
9696
],
9797
},
9898
{
99-
title: 'Prompts',
99+
title: "Prompts",
100100
icon: IconFileAi,
101-
url: '#',
101+
url: "#",
102102
items: [
103103
{
104-
title: 'Active Proposals',
105-
url: '#',
104+
title: "Active Proposals",
105+
url: "#",
106106
},
107107
{
108-
title: 'Archived',
109-
url: '#',
108+
title: "Archived",
109+
url: "#",
110110
},
111111
],
112112
},
113113
],
114114
navSecondary: [
115115
{
116-
title: 'Settings',
117-
url: '#',
116+
title: "Settings",
117+
url: "#",
118118
icon: IconSettings,
119119
},
120120
{
121-
title: 'Get Help',
122-
url: '#',
121+
title: "Get Help",
122+
url: "#",
123123
icon: IconHelp,
124124
},
125125
{
126-
title: 'Search',
127-
url: '#',
126+
title: "Search",
127+
url: "#",
128128
icon: IconSearch,
129129
},
130130
],
131131
documents: [
132132
{
133-
name: 'Data Library',
134-
url: '#',
133+
name: "Data Library",
134+
url: "#",
135135
icon: IconDatabase,
136136
},
137137
{
138-
name: 'Reports',
139-
url: '#',
138+
name: "Reports",
139+
url: "#",
140140
icon: IconReport,
141141
},
142142
{
143-
name: 'Word Assistant',
144-
url: '#',
143+
name: "Word Assistant",
144+
url: "#",
145145
icon: IconFileDescription,
146146
},
147147
],

0 commit comments

Comments
 (0)