We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95443a4 commit 466644aCopy full SHA for 466644a
eslint.config.mjs renamed to eslint.config.cjs
@@ -1,8 +1,8 @@
1
-import globals from "globals";
2
-import { defineConfig } from "eslint/config";
3
-import js from "@eslint/js";
+const globals = require("globals");
+const { defineConfig } = require("eslint/config");
+const js = require("@eslint/js");
4
5
-export default defineConfig([
+module.exports = defineConfig([
6
js.configs.recommended,
7
{
8
files: ["bin/*", "**/*.js"],
0 commit comments