diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index b2b377f..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "env": { - "browser": true, - "cypress/globals": true, - "es6": true, - "node": true - }, - "extends": "eslint:recommended", - "globals": { - "Atomics": "readonly", - "SharedArrayBuffer": "readonly" - }, - "parserOptions": { - "ecmaVersion": 2018, - "sourceType": "module" - }, - "plugins": [ - "cypress" - ], - "rules": { - "brace-style": [2, "1tbs", { "allowSingleLine": true }] - } -} \ No newline at end of file diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..d9d9bce --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,39 @@ +import cypress from "eslint-plugin-cypress"; +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"), { + plugins: { + cypress, + }, + + languageOptions: { + globals: { + ...globals.browser, + ...cypress.environments.globals.globals, + ...globals.node, + Atomics: "readonly", + SharedArrayBuffer: "readonly", + }, + + ecmaVersion: 2018, + sourceType: "module", + }, + + rules: { + "brace-style": [2, "1tbs", { + allowSingleLine: true, + }], + }, +}]; \ No newline at end of file