chore: lint .mjs files as well

This commit is contained in:
Thijs Louisse 2022-12-06 09:36:35 +01:00 committed by Thijs Louisse
parent 5d30258dd6
commit 5b79db91ba

View file

@ -4,7 +4,7 @@ module.exports = {
extends: ['@open-wc/eslint-config', 'eslint-config-prettier'].map(require.resolve),
overrides: [
{
files: ['**/*.js'],
files: ['**/*.js', '**/*.mjs'],
rules: {
'wc/guard-super-call': 'off', // types will prevent you from calling the super if it's not in the base class, making the guard unnecessary
'no-await-in-loop': 'off',