init
This commit is contained in:
commit
017bf6e067
115 changed files with 19650 additions and 0 deletions
42
biome.jsonc
Normal file
42
biome.jsonc
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
|
||||
"files": {
|
||||
"includes": [
|
||||
"**",
|
||||
"!**/build",
|
||||
"!**/dist",
|
||||
"!**/node_modules",
|
||||
"!**/playwright-report",
|
||||
"!**/.vercel",
|
||||
"!**/.netlify",
|
||||
"!**/.vscode",
|
||||
"!**/.astro",
|
||||
"!scripts/flickr-tracking.json"
|
||||
]
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"indentStyle": "space",
|
||||
"indentWidth": 2,
|
||||
"lineEnding": "lf"
|
||||
},
|
||||
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
||||
"linter": { "enabled": true, "rules": { "recommended": true } },
|
||||
"overrides": [
|
||||
{
|
||||
"includes": ["**/*.astro"],
|
||||
"linter": {
|
||||
"rules": {
|
||||
"style": {
|
||||
"useConst": "off",
|
||||
"useImportType": "off"
|
||||
},
|
||||
"correctness": {
|
||||
"noUnusedVariables": "off",
|
||||
"noUnusedImports": "off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue