refactor(lint): linter auto fix

This commit is contained in:
Corentin Thomasset 2022-04-22 23:31:40 +02:00
parent 8e29a97404
commit 086d31eab5
No known key found for this signature in database
GPG key ID: DBD997E935996158
54 changed files with 1122 additions and 1503 deletions

View file

@ -5,18 +5,18 @@
</template>
<script setup lang="ts">
import Memo from './git-memo.md'
import { useThemeVars } from 'naive-ui'
import Memo from './git-memo.md';
import { useThemeVars } from 'naive-ui';
const themeVars = useThemeVars()
const themeVars = useThemeVars();
</script>
<style lang="less" scoped>
::v-deep(pre) {
margin: 0;
padding: 15px 22px;
background-color: v-bind('themeVars.cardColor');
border-radius: 4px;
overflow: auto;
margin: 0;
padding: 15px 22px;
background-color: v-bind('themeVars.cardColor');
border-radius: 4px;
overflow: auto;
}
</style>
</style>

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 sofware. With this cheatsheet you will have a quick acces to the most common git commands.',
description:
'Git is a decentralized version management sofware. With this cheatsheet you will have a quick acces to the most common git commands.',
keywords: ['git', 'push', 'force', 'pull', 'commit', 'ammend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
component: () => import('./git-memo.vue'),
icon: BrandGit,