From 4101d2adbfe2c0d99049e158d098a7e32b373eaa Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Wed, 6 Mar 2024 12:04:43 +0100 Subject: [PATCH] chore(frontend): migrate stylelint and i18next-parser configs to esm --- stylelint.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stylelint.config.js b/stylelint.config.js index e92d9fd3e04..dd996352a71 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -1,4 +1,4 @@ -module.exports = { +const config = { extends: ['stylelint-config-sass-guidelines'], ignoreFiles: ['**/node_modules/**/*.scss'], rules: { @@ -38,3 +38,5 @@ module.exports = { 'value-no-vendor-prefix': null, }, }; + +export default config;