mirror of
https://github.com/TheRealOwenRees/chess-scribe-website.git
synced 2026-07-23 01:46:57 +00:00
2c657c7598
* add bug to todo * disabled import study button if no study ID is selected, but always show if logged in as not to break the layout * basic import of lichess study link * change interface import * Minmax M3 solution to import study chapter/game functionality * change button text * fix toast to display on study and chapter load * add lint and format fix scripts * apply auto formatting * update ignored directories * fix specificity * add rudimentary PDF count metrics * allow docker build * create maintenance mode banner, triggered by env variables
41 lines
734 B
JSON
41 lines
734 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.5/schema.json",
|
|
"vcs": {
|
|
"enabled": false,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": false
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": [
|
|
"**/src/**/*",
|
|
"**/.vscode/**/*",
|
|
"**/index.html",
|
|
"**/vite.config.ts",
|
|
"!**/src/routeTree.gen.ts",
|
|
"!**/src/styles.css",
|
|
"!**/.tanstack/*",
|
|
"!**/.output/*",
|
|
"!**/.nitro/*",
|
|
"!**/node_modules/*",
|
|
"!**/styles/vendor/*"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "tab"
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double"
|
|
}
|
|
}
|
|
}
|