aboutsummaryrefslogtreecommitdiff
path: root/bot/eslint.config.js
blob: e67ce2608304dedbba5800d723ebda6b2564d4be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import globals from "globals";
import pluginJs from "@eslint/js";


/** @type {import('eslint').Linter.Config[]} */
export default [
    {
      languageOptions: {
        ecmaVersion: "latest",
        sourceType: "module",
        globals: globals.node
      }
    },
    pluginJs.configs.recommended,
];