Client - update ESLint rules

This commit is contained in:
Sam 2023-11-15 09:43:59 +01:00
parent badea71f5c
commit 8228db5b24

View File

@ -34,6 +34,7 @@ module.exports = {
} }
], ],
'import/no-unresolved': ['off', { ignore: ['^@/'] }], 'import/no-unresolved': ['off', { ignore: ['^@/'] }],
'vue/multi-word-component-names': 'off' 'vue/multi-word-component-names': 'off',
'@typescript-eslint/no-unused-vars': 'error'
} }
} }