Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion PROJECT_STATUS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# resume-tailor — PROJECT STATUS

Last updated: 2026-07-31
Last updated: 2026-08-09

## Why / What

Expand All @@ -20,6 +20,9 @@ Live on `rolepatch.com` via Cloudflare Workers (OpenNext).

### External

- **Ultracite 7.10.2:** Exact development-only shared Biome presets; RolePatch
keeps explicit local compatibility exceptions and does not ship Ultracite at
runtime.
- **Cloudflare D1:** Signed-in persistence: jobs, applications, evidence, saved searches, alerts.
- **Dodo Payments:** Token purchases; webhook + success verification hardened in audit.
- **LinkedIn (guest API):** In-Worker job search — no API key; datacenter IP rate limits possible.
Expand Down Expand Up @@ -63,6 +66,11 @@ SHA-tagged `workflow_dispatch`.

## Timeline

- **2026-08-09 — Adopted the verified Fleet lint baseline:** Extended the
exact Ultracite core, React, Next.js, and Vitest Biome presets while retaining
RolePatch's existing formatter contract, generated-file exclusions, and
explicit compatibility exceptions. No source rewrite, production dependency,
runtime, route, deploy, secret, or production configuration changed.
- **2026-08-05 — ATS metrics guide aligned to live search evidence:** The
public ATS score guide now distinguishes third-party resume-match scores from
employer recruiting metrics, removes unsupported universal threshold claims,
Expand Down
76 changes: 72 additions & 4 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"$schema": "https://biomejs.dev/schemas/2.5.5/schema.json",
"extends": [
"ultracite/biome/core",
"ultracite/biome/react",
"ultracite/biome/next",
"ultracite/biome/vitest"
],
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
"files": {
"ignoreUnknown": true,
Expand Down Expand Up @@ -40,11 +46,14 @@
"jsxQuoteStyle": "double"
}
},
"html": { "formatter": { "enabled": false } },
"json": { "formatter": { "enabled": false } },
"linter": {
"enabled": true,
"rules": {
"preset": "recommended",
"a11y": {
"noNoninteractiveElementInteractions": "off",
"noSvgWithoutTitle": "off",
"useButtonType": "off",
"useValidAnchor": "off",
Expand All @@ -54,22 +63,81 @@
"useSemanticElements": "off"
},
"suspicious": {
"noAlert": "off",
"noExplicitAny": "off",
"noArrayIndexKey": "off",
"noBiomeFirstException": "off",
"noBitwiseOperators": "off",
"noEmptyBlockStatements": "off",
"noEqualsToNull": "off",
"noLeakedRender": "off",
"noNestedPromises": "off",
"noShadow": "off",
"noShadowRestrictedNames": "off",
"noUnnecessaryConditions": "off",
"useIterableCallbackReturn": "off",
"noShadowRestrictedNames": "off"
"useAwait": "off"
},
"security": {
"noDangerouslySetInnerHtml": "off"
},
"style": {
"noIncrementDecrement": "off",
"noNegationElse": "off",
"noNestedTernary": "off",
"noNonNullAssertion": "off",
"useNodejsImportProtocol": "off"
"noParameterAssign": "off",
"noUnusedTemplateLiteral": "off",
"useAtIndex": "off",
"useBlockStatements": "off",
"useConsistentArrayType": "off",
"useConsistentArrowReturn": "off",
"useConsistentMethodSignatures": "off",
"useConsistentTypeDefinitions": "off",
"useDefaultSwitchClause": "off",
"useDestructuring": "off",
"useErrorCause": "off",
"useFilenamingConvention": "off",
"useForOf": "off",
"useNodejsImportProtocol": "off",
"useNumericSeparators": "off"
},
"complexity": {
"useLiteralKeys": "off"
"noDivRegex": "off",
"noExcessiveCognitiveComplexity": "off",
"noForEach": "off",
"noUselessUndefined": "off",
"noVoid": "off",
"useArrayFind": "off",
"useLiteralKeys": "off",
"useSimplifiedLogicExpression": "off"
},
"correctness": {
"noGlobalDirnameFilename": "off"
},
"nursery": {
"useSortedClasses": "off"
},
"performance": {
"noAwaitInLoops": "off",
"noBarrelFile": "off",
"noDelete": "off",
"noJsxPropsBind": "off",
"useTopLevelRegex": "off"
}
}
},
"assist": { "enabled": true, "actions": { "source": { "organizeImports": "off" } } }
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "off",
"useSortedAttributes": "off",
"useSortedInterfaceMembers": "off",
"useSortedKeys": "off",
"useSortedPackageJson": "off",
"useSortedProperties": "off"
}
}
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
"knip": "^6.29.0",
"tailwindcss": "^4.3.3",
"typescript": "^5",
"ultracite": "7.10.2",
"vitest": "^4.1.10",
"wrangler": "^4.114.0"
}
Expand Down
55 changes: 55 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.