Revert "Revert "chore(lint): disable breaking rules""

This reverts commit a6e32d0822.
This commit is contained in:
Sabe Jones 2021-08-27 18:55:21 -05:00
parent f13e982553
commit a08005e5da
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@ module.exports = {
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// TODO find a way to let eslint understand webpack aliases
'import/no-unresolved': 'off',
'import/extensions': 'off',
'vue/no-v-html': 'off',
'vue/html-self-closing': ['error', {
html: {

View file

@ -5,5 +5,6 @@ base.rules = base.rules || {};
// TODO find a way to let eslint understand webpack aliases
base.rules['import/no-unresolved'] = 'off';
base.rules['import/extensions'] = 'off';
module.exports = base;