File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
+ "extends": [
3
+ "plugin:astro/recommended",
4
+ "plugin:astro/jsx-a11y-strict",
5
+ "plugin:@typescript-eslint/recommended-requiring-type-checking"
6
+ ],
7
+ "parser": "@typescript-eslint/parser",
2
8
"parserOptions": {
3
9
"project": "tsconfig.json"
4
10
},
5
11
"overrides": [
6
12
{
7
- "files": ["*.astro"],
8
- "extends": ["plugin:astro/recommended", "plugin:astro/jsx-a11y-strict"]
9
- },
10
- {
11
- "files": ["*.ts", "*.tsx"],
12
- "extends": [
13
- "plugin:@typescript-eslint/recommended-requiring-type-checking"
14
- ]
15
- },
16
- {
17
- "files": ["*.mdx"],
18
- "extends": ["plugin:mdx/recommended"]
13
+ "files": [
14
+ "*.astro"
15
+ ],
16
+ "parser": "astro-eslint-parser",
17
+ "parserOptions": {
18
+ "parser": "@typescript-eslint/parser"
19
+ }
19
20
}
20
21
]
21
- }
22
+ }
You can’t perform that action at this time.
0 commit comments