25 lines
483 B
JSON
25 lines
483 B
JSON
{
|
|
"root": true,
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:unicorn/recommended",
|
|
"plugin:astro/recommended",
|
|
"prettier"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.astro"],
|
|
"parser": "astro-eslint-parser",
|
|
"parserOptions": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"extraFileExtensions": [".astro"]
|
|
}
|
|
}
|
|
]
|
|
}
|