Disable newly added eslint rules

This commit is contained in:
Lachlan Collins
2023-07-05 03:13:23 +10:00
parent ac1bcfc078
commit f5b60196ff

View File

@@ -26,5 +26,9 @@ module.exports = {
parser: '@typescript-eslint/parser'
}
}
]
],
rules: {
'svelte/no-at-html-tags': 'off',
'svelte/valid-compile': 'off'
}
};