Update eslint settings to not clash with prettier

This commit is contained in:
Ramon Wenger 2023-01-12 16:23:29 +01:00
parent 9a91aaf47c
commit 1fcb0875a0
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,7 @@ module.exports = {
// 'plugin:vue/recommended',
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'prettier',
],
// required to lint *.vue files
plugins: ['vue', '@typescript-eslint'],
@ -37,7 +38,6 @@ module.exports = {
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
indent: 'off',
semi: ['error', 'always'],
'space-before-function-paren': 'off',
'comma-dangle': 'off',