mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-02-23 15:07:11 +08:00
fix(lint): missing new lines
This commit is contained in:
parent
9da56da096
commit
3cfc5f8bc2
2 changed files with 4 additions and 2 deletions
|
@ -4,7 +4,8 @@ import type { ITool } from '../Tool';
|
|||
export const tool: ITool = {
|
||||
name: 'Git cheatsheet',
|
||||
path: '/git-memo',
|
||||
description: 'Git is a decentralized version management software. With this cheatsheet you will have a quick access to the most common git commands.',
|
||||
description:
|
||||
'Git is a decentralized version management software. With this cheatsheet you will have a quick access to the most common git commands.',
|
||||
keywords: ['git', 'push', 'force', 'pull', 'commit', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
|
||||
component: () => import('./git-memo.vue'),
|
||||
icon: BrandGit,
|
||||
|
|
|
@ -4,7 +4,8 @@ import type { ITool } from './../Tool';
|
|||
export const tool: ITool = {
|
||||
name: 'Url parser',
|
||||
path: '/url-parser',
|
||||
description: 'Parse an url string to get all the different parts (protocol, origin, params, port, username-password, ...)',
|
||||
description:
|
||||
'Parse an url string to get all the different parts (protocol, origin, params, port, username-password, ...)',
|
||||
keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'],
|
||||
component: () => import('./url-parser.vue'),
|
||||
icon: Unlink,
|
||||
|
|
Loading…
Reference in a new issue