File tree Expand file tree Collapse file tree 3 files changed +470
-66
lines changed Expand file tree Collapse file tree 3 files changed +470
-66
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "overrides": [
3
+ {
4
+ "files": [
5
+ "*.astro",
6
+ "*.ts",
7
+ "*.tsx"
8
+ ],
9
+ "extends": [
10
+ "plugin:astro/recommended",
11
+ "plugin:astro/jsx-a11y-strict",
12
+ "plugin:@typescript-eslint/recommended-requiring-type-checking"
13
+ ],
14
+ "parser": "@typescript-eslint/parser",
15
+ "parserOptions": {
16
+ "project": "tsconfig.json"
17
+ },
18
+ "rules": {},
19
+ "overrides": [
20
+ {
21
+ "files": [
22
+ "*.astro"
23
+ ],
24
+ "parser": "astro-eslint-parser",
25
+ "parserOptions": {
26
+ "parser": "@typescript-eslint/parser"
27
+ }
28
+ }
29
+ ]
30
+ },
31
+ {
32
+ "files": [
33
+ "*.md",
34
+ "*.mdx"
35
+ ],
36
+ "extends": [
37
+ "plugin:mdx/recommended"
38
+ ]
39
+ }
40
+ ]
41
+ }
Original file line number Diff line number Diff line change 27
27
},
28
28
"devDependencies" : {
29
29
"@tailwindcss/typography" : " ^0.5.9"
30
+ "eslint" : " ^8.41.0" ,
31
+ "eslint-plugin-astro" : " ^0.27.0"
30
32
}
31
33
}
You can’t perform that action at this time.
0 commit comments