This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
identity/identity-api/eslint.config.js
2024-06-30 18:13:29 +02:00

8 lines
205 B
JavaScript

import globals from "globals";
import pluginJs from "@eslint/js";
export default [
{ ignores: ["**/dist/*"] },
{ languageOptions: { globals: globals.node } },
pluginJs.configs.recommended,
];