squash and nuke dev

This commit is contained in:
outfoxxed 2026-02-18 02:40:40 -08:00
parent b2d43ad425
commit f26e76c114
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
93 changed files with 33827 additions and 7831 deletions

100
biome.jsonc Normal file
View file

@ -0,0 +1,100 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.1/schema.json",
"files": {
"includes": ["**", "!!**/dist", "!**/node_modules", "!**/.yarn"]
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"attributePosition": "auto"
},
"plugins": [],
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useConst": "error"
},
"suspicious": {
"noDoubleEquals": "error"
},
"correctness": {
"useJsxKeyInIterable": "info"
}
}
},
"html": {
"formatter": {
"enabled": true,
"indentScriptAndStyle": true,
"lineWidth": 80
},
"experimentalFullSupportEnabled": true
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "es5",
"semicolons": "always",
"arrowParentheses": "asNeeded",
"bracketSpacing": true,
"bracketSameLine": false,
"quoteStyle": "double",
"lineWidth": 66,
"attributePosition": "multiline"
}
},
"css": {
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"linter": {
"enabled": true
},
"parser": {
"cssModules": true
}
},
"json": {
"formatter": {
"enabled": true,
"lineWidth": 80,
"lineEnding": "lf",
"indentStyle": "space",
"indentWidth": 2
}
},
"overrides": [
{
"includes": ["**/*.ts", "**/*.tsx"],
"linter": {
"rules": {
"complexity": {
"noBannedTypes": "off"
},
"correctness": {
"noInvalidUseBeforeDeclaration": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "info",
"noDuplicateClassMembers": "off",
"noEmptyBlockStatements": "off"
},
"a11y": {
"noSvgWithoutTitle": "info"
}
}
}
}
]
}