Skip to content

Commit 239d1f5

Browse files
chore(ui): Remove unnecessary eslint rule disables (#1422)
cleanup(ui): Remove unnecessary eslint rule disables
1 parent 47bc78d commit 239d1f5

File tree

12 files changed

+0
-12
lines changed

12 files changed

+0
-12
lines changed

web/app/src/App.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@
153153
</template>
154154

155155
<script setup>
156-
/* eslint-disable no-undef */
157156
import { ref, computed, onMounted, onUnmounted } from 'vue'
158157
import { useRoute } from 'vue-router'
159158
import { Menu, X, LogIn } from 'lucide-vue-next'

web/app/src/components/EndpointCard.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
</template>
6363

6464
<script setup>
65-
/* eslint-disable no-undef */
6665
import { computed, ref, onMounted, onUnmounted } from 'vue'
6766
import { useRouter } from 'vue-router'
6867
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card'

web/app/src/components/Pagination.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
</template>
3030

3131
<script setup>
32-
/* eslint-disable no-undef */
3332
import { ref, computed } from 'vue'
3433
import { ChevronLeft, ChevronRight } from 'lucide-vue-next'
3534
import { Button } from '@/components/ui/button'

web/app/src/components/Settings.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454

5555

5656
<script setup>
57-
/* eslint-disable no-undef */
5857
import { ref, onMounted, onUnmounted } from 'vue'
5958
import { Sun, Moon, RefreshCw } from 'lucide-vue-next'
6059

web/app/src/components/Tooltip.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@
9595
</template>
9696

9797
<script setup>
98-
/* eslint-disable no-undef */
9998
import { ref, watch, nextTick, computed, onMounted, onUnmounted } from 'vue'
10099
import { useRoute } from 'vue-router'
101100
import { prettifyTimestamp } from '@/utils/time'

web/app/src/components/ui/badge/Badge.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
</template>
66

77
<script setup>
8-
/* eslint-disable no-undef */
98
import { cva } from 'class-variance-authority'
109
import { combineClasses } from '@/utils/misc'
1110

web/app/src/components/ui/button/Button.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
</template>
99

1010
<script setup>
11-
/* eslint-disable no-undef */
1211
import { cva } from 'class-variance-authority'
1312
import { combineClasses } from '@/utils/misc'
1413

web/app/src/components/ui/input/Input.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
</template>
1111

1212
<script setup>
13-
/* eslint-disable no-undef */
1413
import { combineClasses } from '@/utils/misc'
1514
1615
defineProps({

web/app/src/components/ui/select/Select.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
</template>
4141

4242
<script setup>
43-
/* eslint-disable no-undef */
4443
import { ref, computed, onMounted, onUnmounted } from 'vue'
4544
import { ChevronDown, Check } from 'lucide-vue-next'
4645

web/app/src/views/EndpointDetails.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@
201201
</template>
202202

203203
<script setup>
204-
/* eslint-disable no-undef */
205204
import { ref, computed, onMounted } from 'vue'
206205
import { useRouter, useRoute } from 'vue-router'
207206
import { ArrowLeft, RefreshCw, ArrowUpCircle, ArrowDownCircle, PlayCircle, Activity, Timer } from 'lucide-vue-next'

0 commit comments

Comments
 (0)