fix(lint): missing new lines

This commit is contained in:
Corentin Thomasset 2022-05-09 15:25:48 +02:00
parent 9da56da096
commit 3cfc5f8bc2
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
2 changed files with 4 additions and 2 deletions

View file

@ -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,

View file

@ -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,