Skip to content

Commit

Permalink
build(lint): migrate eslint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kslimani committed Jun 29, 2024
1 parent 39c5b46 commit 4e61482
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .eslintrc.json

This file was deleted.

39 changes: 39 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -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,
}],
},
}];

0 comments on commit 4e61482

Please sign in to comment.