mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 09:56:51 +01:00
27 lines
453 B
JSON
27 lines
453 B
JSON
|
{
|
||
|
"extends": ["@kremalicious/config/biome"],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"include": ["*.astro"],
|
||
|
"linter": {
|
||
|
"rules": {
|
||
|
"style": {
|
||
|
"useConst": "off",
|
||
|
"useImportType": "off"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"include": ["*.test.ts", "*.test.tsx"],
|
||
|
"linter": {
|
||
|
"rules": {
|
||
|
"suspicious": {
|
||
|
"noExplicitAny": "off"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|