From 2fb5673c35d4e477231c55508b960f7a3ad6b70f Mon Sep 17 00:00:00 2001 From: Noel Chiasson Date: Tue, 15 Oct 2024 13:30:54 -0300 Subject: [PATCH] Updating PR with migrated eslint config --- eslint.config.mjs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 eslint.config.mjs diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..1a568f6 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,29 @@ +import globals from "globals"; +import path from "node:path"; +import { fileURLToPath } from "node:url"; +import js from "@eslint/js"; +import { FlatCompat } from "@eslint/eslintrc"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); +const compat = new FlatCompat({ + baseDirectory: __dirname, + recommendedConfig: js.configs.recommended, + allConfig: js.configs.all +}); + +export default [...compat.extends("eslint:recommended"), { + languageOptions: { + globals: { + ...globals.commonjs, + ...globals.node, + Atomics: "readonly", + SharedArrayBuffer: "readonly", + }, + + ecmaVersion: 2018, + sourceType: "commonjs", + }, + + rules: {}, +}]; \ No newline at end of file