refactor(lint): auto fix lint
This commit is contained in:
		
							parent
							
								
									a1e983538c
								
							
						
					
					
						commit
						9d639edf2d
					
				| @ -13,7 +13,7 @@ | |||||||
|       <n-tooltip v-if="value" trigger="hover"> |       <n-tooltip v-if="value" trigger="hover"> | ||||||
|         <template #trigger> |         <template #trigger> | ||||||
|           <div class="copy-button" :class="[copyPlacement]"> |           <div class="copy-button" :class="[copyPlacement]"> | ||||||
|             <n-button secondary circle size="large" @click="onCopyClicked"> |             <n-button circle secondary size="large" @click="onCopyClicked"> | ||||||
|               <n-icon size="22" :component="Copy" /> |               <n-icon size="22" :component="Copy" /> | ||||||
|             </n-button> |             </n-button> | ||||||
|           </div> |           </div> | ||||||
|  | |||||||
| @ -1,13 +1,12 @@ | |||||||
| <script lang="ts" setup> | <script lang="ts" setup> | ||||||
| import { NIcon, useThemeVars, type MenuGroupOption, type MenuOption } from 'naive-ui'; | import { NIcon, useThemeVars } from 'naive-ui'; | ||||||
| import { computed, h } from 'vue'; | import { computed } from 'vue'; | ||||||
| import { RouterLink, useRoute } from 'vue-router'; | import { RouterLink } from 'vue-router'; | ||||||
| import { Heart, Menu2, Home2 } from '@vicons/tabler'; | import { Heart, Menu2, Home2 } from '@vicons/tabler'; | ||||||
| import { toolsByCategory } from '@/tools'; | import { toolsByCategory } from '@/tools'; | ||||||
| import { useStyleStore } from '@/stores/style.store'; | import { useStyleStore } from '@/stores/style.store'; | ||||||
| import { config } from '@/config'; | import { config } from '@/config'; | ||||||
| import MenuIconItem from '@/components/MenuIconItem.vue'; | import type { ToolCategory } from '@/tools/tools.types'; | ||||||
| import type { Tool, ToolCategory } from '@/tools/tools.types'; |  | ||||||
| import { useToolStore } from '@/tools/tools.store'; | import { useToolStore } from '@/tools/tools.store'; | ||||||
| import { useTracker } from '@/modules/tracker/tracker.services'; | import { useTracker } from '@/modules/tracker/tracker.services'; | ||||||
| import CollapsibleToolMenu from '@/components/CollapsibleToolMenu.vue'; | import CollapsibleToolMenu from '@/components/CollapsibleToolMenu.vue'; | ||||||
| @ -17,7 +16,6 @@ import MenuLayout from '../components/MenuLayout.vue'; | |||||||
| import NavbarButtons from '../components/NavbarButtons.vue'; | import NavbarButtons from '../components/NavbarButtons.vue'; | ||||||
| 
 | 
 | ||||||
| const themeVars = useThemeVars(); | const themeVars = useThemeVars(); | ||||||
| const route = useRoute(); |  | ||||||
| const styleStore = useStyleStore(); | const styleStore = useStyleStore(); | ||||||
| const version = config.app.version; | const version = config.app.version; | ||||||
| const commitSha = config.app.lastCommitSha.slice(0, 7); | const commitSha = config.app.lastCommitSha.slice(0, 7); | ||||||
|  | |||||||
| @ -4,8 +4,7 @@ import { defineTool } from '../tool'; | |||||||
| export const tool = defineTool({ | export const tool = defineTool({ | ||||||
|   name: 'IPv6 ULA generator', |   name: 'IPv6 ULA generator', | ||||||
|   path: '/ipv6-ula-generator', |   path: '/ipv6-ula-generator', | ||||||
|   description: |   description: 'Generate your own local, non-routable IP addresses on your network according to RFC4193.', | ||||||
|     'Generate your own local, non-routable IP addresses on your network according to RFC4193.', |  | ||||||
|   keywords: ['ipv6', 'ula', 'generator', 'rfc4193', 'network', 'private'], |   keywords: ['ipv6', 'ula', 'generator', 'rfc4193', 'network', 'private'], | ||||||
|   component: () => import('./ipv6-ula-generator.vue'), |   component: () => import('./ipv6-ula-generator.vue'), | ||||||
|   icon: BuildingFactory, |   icon: BuildingFactory, | ||||||
|  | |||||||
| @ -18,7 +18,7 @@ | |||||||
| 
 | 
 | ||||||
|     <br /> |     <br /> | ||||||
| 
 | 
 | ||||||
|     <n-input :value="loremIpsumText" type="textarea" placeholder="Your lorem ipsum..." autosize readonly /> |     <n-input :value="loremIpsumText" type="textarea" placeholder="Your lorem ipsum..." readonly autosize /> | ||||||
|     <br /> |     <br /> | ||||||
|     <br /> |     <br /> | ||||||
|     <n-space justify="center"> |     <n-space justify="center"> | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user