spb/airiskindex Public
The most methodologically rigorous, fully transparent AI job-exposure index.
TypeScript 88%
Python 6.1%
SQL 2.7%
CSS 1.2%
JavaScript 0.9%
Shell 0.8%
1// File: eslint.config.mjs2// Path: eslint.config.mjs3// Project: AI Risk Index — airiskindex.io4// Author: Simon-Pierre Boucher5// Contact: contact@spboucher.ai6// Copyright © 2026 Simon-Pierre Boucher. All rights reserved.7//8// Description: ESLint flat configuration for the monorepo.910import js from "@eslint/js";11import tseslint from "typescript-eslint";1213export default tseslint.config(14 {15 ignores: [16 "**/node_modules/**",17 "**/.next/**",18 "**/dist/**",19 "**/.turbo/**",20 "apps/etl/**",21 "**/next-env.d.ts",22 ],23 },24 js.configs.recommended,25 ...tseslint.configs.recommended,26 {27 rules: {28 "@typescript-eslint/no-unused-vars": [29 "error",30 { argsIgnorePattern: "^_", varsIgnorePattern: "^_" },31 ],32 },33 },34);35