Skip to content

Commit f2e8d98

Browse files
committed
- Linting: Temporarily disable eslint-comments rules; add line breaks
1 parent 6632799 commit f2e8d98

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ module.exports = {
6161
plugins: ['@typescript-eslint'],
6262
parser: '@typescript-eslint/parser',
6363
rules: {
64+
// Reenable later
65+
'eslint-comments/require-description': 0,
66+
'eslint-comments/no-unused-disable': 0,
67+
68+
// '@typescript-eslint/no-unsafe-assignment': ['error'],
69+
// '@typescript-eslint/no-unsafe-member-access': ['error'],
70+
// '@typescript-eslint/no-unsafe-return': ['error'],
71+
// '@typescript-eslint/naming-convention': ['error'],
6472
// Reenable later?
6573
'@typescript-eslint/explicit-module-boundary-types': 0,
6674
},

src/components/compounds/Table/Table.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,9 @@ export default Table
227227
<a @click="toggleExpandedGroup(group)" class="mr-4">{{
228228
expandedGroups.has(group) ? '&darr;' : '&rarr;'
229229
}}</a>
230-
{{ groupBy }}: <v-tag type="is-primary" class="mx-4">{{ group }} </v-tag>
230+
{{ groupBy }}: <v-tag type="is-primary" class="mx-4">
231+
{{ group }}
232+
</v-tag>
231233
</td>
232234
</tr>
233235
<template v-if="expandedGroups.has(group)">

0 commit comments

Comments
 (0)