29 lines
755 B
JavaScript
29 lines
755 B
JavaScript
|
|
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: {},
|
||
|
|
}];
|