File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
src/components/compounds/Table Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff 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 } ,
Original file line number Diff line number Diff 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 )" >
You can’t perform that action at this time.
0 commit comments