1// SPDX-FileCopyrightText: 2025 Norbert Melzer
2// SPDX-FileContributor: Norbert Melzer
3//
4// SPDX-License-Identifier: MIT
5
6import eslint from "@eslint/js";
7import tseslint from "typescript-eslint";
8import astro from "eslint-plugin-astro";
9
10export default [
11 eslint.configs.recommended,
12 ...tseslint.configs.recommended,
13 ...astro.configs.recommended,
14 { ignores: ["dist/*", ".astro/*", ".cache/*"] },
15 { languageOptions: { globals: { astroHTML: "readonly" } } },
16];