openreachtech / eslint-config-openreachtech

ESLint config by Open Reach Tech inc.
MIT License
0 stars 0 forks source link

🐛 Fix `eslint.config.mjs` to setup as `module` #322

Open StewEucen opened 2 months ago

StewEucen commented 2 months ago

Overview

Fix eslint.config.mjs to setup as module

Note

Current eslint.config.mjs require the override code in frontend application repository

import openreachtechConfig from '@openreachtech/eslint-config'

export default [
+  {
+    languageOptions: {
+      sourceType: 'module',
+    },
+  },

  ...openreachtechConfig,
]