blob: 605bb6335374e1d140e99217de712b43bf779cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import eslint from "@eslint/js";
import teslint from "typescript-eslint";
import astro from "eslint-plugin-astro";
import prettier from "eslint-config-prettier";
export default teslint.config(
eslint.configs.recommended,
...teslint.configs.strict,
...teslint.configs.stylistic,
...astro.configs.recommended,
...astro.configs["jsx-a11y-strict"],
prettier,
{
ignores: ["src/env.d.ts"],
},
);
|