Mirror of the sourcecode for my blog, original repo: https://github.com/NobbZ/blog-nobbz-dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a2f95cc6ee1879469639e9eaee252050f642d776 16 lines 471 B view raw
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];