refactor(eslint): ignore two ennoying rules

This commit is contained in:
Walid 2023-07-26 20:56:04 +01:00
parent f3af69cdab
commit c8a405052d
Signed by: Walidoux
GPG Key ID: CCF21881FE8BEBAF

View File

@ -11,6 +11,9 @@ module.exports = {
browser: true
},
rules: {
'prettier/prettier': 'error'
'prettier/prettier': 'error',
'arrow-body-style': 'off',
'@typescript-eslint/no-extraneous-class': 'off'
}
}