You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: add EditorConfig, Prettier, and ESLint across all three projects
Adds shared editor/format/lint conventions for the root Worker, the
SvelteKit dashboard, and the GitHub Action, each keeping its own
Prettier/ESLint devDependencies and config since the three are
independent npm projects with no workspaces. Wires lint and
format-check steps into the existing CI jobs (no new jobs, no
duplicated checkout/install work) and applies a one-time repo-wide
--fix/--write pass.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
| `worker-url` | **yes** | — | Base URL of your coverage-tracker Worker. |
32
-
| `coverage-path` | no | *(probed)* | Path to the coverage report. When unset, the documented per-language default paths are probed in a fixed order; the first hit wins. **Missing coverage is always a hard failure** (the error lists every probed path). An explicit path always wins. |
33
-
| `coverage-tool` | no | `''` | Only relevant for Cobertura, whose branch semantics vary by producer (`gocover-cobertura`, `kcov`, `covertool`, `phpunit`, `gcovr`). Naming it silences the "trusting the data" warning. Ignored for LCOV / JaCoCo / Go. |
34
-
| `complexity-path` | no | *(probed)* | Radon JSON, gocyclo text, or Lizard XML. When unset, probes `radon.json` → `gocyclo.txt` → `lizard-report.xml`. |
35
-
| `duplication-path` | no | *(probed)* | jscpd JSON. When unset, probes `jscpd-report/jscpd-report.json`. The Action no longer runs jscpd — run it yourself. |
| `worker-url` | **yes** | — | Base URL of your coverage-tracker Worker. |
32
+
| `coverage-path` | no | _(probed)_ | Path to the coverage report. When unset, the documented per-language default paths are probed in a fixed order; the first hit wins. **Missing coverage is always a hard failure** (the error lists every probed path). An explicit path always wins. |
33
+
| `coverage-tool` | no | `''` | Only relevant for Cobertura, whose branch semantics vary by producer (`gocover-cobertura`, `kcov`, `covertool`, `phpunit`, `gcovr`). Naming it silences the "trusting the data" warning. Ignored for LCOV / JaCoCo / Go. |
34
+
| `complexity-path` | no | _(probed)_ | Radon JSON, gocyclo text, or Lizard XML. When unset, probes `radon.json` → `gocyclo.txt` → `lizard-report.xml`. |
35
+
| `duplication-path` | no | _(probed)_ | jscpd JSON. When unset, probes `jscpd-report/jscpd-report.json`. The Action no longer runs jscpd — run it yourself. |
0 commit comments