Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 7198bd7

Browse files
committed
Install & init ESLint
1 parent 3e74272 commit 7198bd7

File tree

3 files changed

+1089
-0
lines changed

3 files changed

+1089
-0
lines changed

eslint.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
4+
5+
/** @type {import('eslint').Linter.Config[]} */
6+
export default [
7+
{languageOptions: { globals: globals.node }},
8+
pluginJs.configs.recommended,
9+
];

0 commit comments

Comments
 (0)