config: update eslintrc

This commit is contained in:
2023-06-11 21:40:53 +02:00
parent 9c329b5ff7
commit cabb3473bb

View File

@@ -61,6 +61,10 @@ module.exports = {
'ts-nocheck': false,
'ts-expect-error': 'allow-with-description',
}],
// Ignore some no-used-vars
'@typescript-eslint/no-unused-vars': ['warn', {
'argsIgnorePattern': '^_',
}],
/* Svelte
========================================= */
@@ -72,6 +76,8 @@ module.exports = {
avoidInvalidUnquotedInHTML: false,
}
}],
// Enable @html
'svelte/no-at-html-tags': 'off',
},
settings: {
},