discord_bot/eslint.config.mjs
SileNce5k 5e29cad544
Some checks failed
CI / CI (push) Successful in 16s
Lint Codebase / eslint (push) Failing after 2s
Add eslint as linter and add linter workflow
2024-11-05 05:28:44 +01:00

10 lines
No EOL
282 B
JavaScript

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