This repository has been archived on 2026-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_2025/apps/server/eslint.config.js

11 lines
241 B
JavaScript
Raw Normal View History

2025-04-27 20:47:47 +00:00
import config from "@repo/eslint-config/index.js";
/** @type {import("eslint").Linter.FlatConfig} */
export default [
{
...config,
files: ["**/*.js", "**/*.ts", "**/*.tsx"],
ignores: ["node_modules", "dist", "build"],
},
];