Skip to content

Commit

Permalink
build: update eslint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kslimani committed Jun 29, 2024
1 parent e5fc75b commit 57e7240
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .eslintrc.json

This file was deleted.

33 changes: 33 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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.browser,
...globals.node,
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},

ecmaVersion: 2018,
sourceType: "module",
},

rules: {
"brace-style": [2, "1tbs", {
allowSingleLine: true,
}],
},
}];

0 comments on commit 57e7240

Please sign in to comment.