// File: eslint.config.mjs // Path: eslint.config.mjs // Project: AI Risk Index — airiskindex.io // Author: Simon-Pierre Boucher // Contact: contact@spboucher.ai // Copyright © 2026 Simon-Pierre Boucher. All rights reserved. // // Description: ESLint flat configuration for the monorepo. import js from "@eslint/js"; import tseslint from "typescript-eslint"; export default tseslint.config( { ignores: [ "**/node_modules/**", "**/.next/**", "**/dist/**", "**/.turbo/**", "apps/etl/**", "**/next-env.d.ts", ], }, js.configs.recommended, ...tseslint.configs.recommended, { rules: { "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }, ], }, }, );