From 5b79db91ba59040bd4906a66484cdb0a35ab85b7 Mon Sep 17 00:00:00 2001 From: Thijs Louisse Date: Tue, 6 Dec 2022 09:36:35 +0100 Subject: [PATCH] chore: lint .mjs files as well --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 4fe48cde5..a966aecc0 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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',