gendesign/tradein-mvp/frontend/eslint.config.mjs
lekss361 e6000cb029
All checks were successful
Deploy Trade-In / changes (push) Successful in 10s
Deploy Trade-In / build-browser (push) Successful in 34s
Deploy Trade-In / test (push) Successful in 1m38s
Deploy Trade-In / build-backend (push) Successful in 1m29s
Deploy Trade-In / build-frontend (push) Successful in 3m21s
Deploy Trade-In / deploy (push) Successful in 1m18s
ci(tradein): pre-merge гейт — backend pytest + frontend type-check/lint (#2208) (#2220)
2026-07-02 19:56:22 +00:00

13 lines
563 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ESLint flat config для tradein-mvp/frontend (#2208 CI-гейт).
// eslint-config-next в flat-формате через FlatCompat (next lint deprecated в Next 16,
// поэтому конфиг сразу совместим и с прямым `eslint .`).
import { FlatCompat } from "@eslint/eslintrc";
const compat = new FlatCompat({ baseDirectory: import.meta.dirname });
const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
{ ignores: [".next/**", "node_modules/**", "out/**"] },
];
export default eslintConfig;