SPB Git

spb/valoplex Public

ValoPlex — moteur d'évaluation spécialisé pour les plex au Québec, petit frère de Vrai-Prix.

TypeScript 90.3% Python 7.1% CSS 2.5%
465 B · 19 lines javascript
Raw Blame History
1import { defineConfig, globalIgnores } from "eslint/config";2import nextVitals from "eslint-config-next/core-web-vitals";3import nextTs from "eslint-config-next/typescript";45const eslintConfig = defineConfig([6  ...nextVitals,7  ...nextTs,8  // Override default ignores of eslint-config-next.9  globalIgnores([10    // Default ignores of eslint-config-next:11    ".next/**",12    "out/**",13    "build/**",14    "next-env.d.ts",15  ]),16]);1718export default eslintConfig;19