mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-16 08:25:14 +02:00
chore: add TypeScript dead-code checks (#60)
* chore: add TypeScript dead-code checks * chore: trim stale Knip ignores * Fix CI smoke and artifact checks
This commit is contained in:
parent
721f1a998f
commit
bcb0d2f8f7
29 changed files with 818 additions and 220 deletions
|
|
@ -53,7 +53,6 @@ function fixSuggestions(input: MemoryFlowReplayInput): string[] {
|
|||
|
||||
export function formatMemoryFlowFinalSummary(input: MemoryFlowReplayInput): string {
|
||||
const sources = eventsOf(input.events, 'source_acquired');
|
||||
const source = sources.at(-1);
|
||||
const totalFiles = sources.reduce((sum, s) => sum + s.fileCount, 0);
|
||||
const saved = latest(input.events, 'saved');
|
||||
const provenance = latest(input.events, 'provenance_recorded');
|
||||
|
|
|
|||
|
|
@ -68,15 +68,6 @@ export interface KtxDescriptionUpdate {
|
|||
columnDescriptions?: Record<string, string | null>;
|
||||
}
|
||||
|
||||
const PREFERRED_METADATA_FIELD_NAMES = [
|
||||
'tags',
|
||||
'constraints',
|
||||
'enum_values',
|
||||
'freshness',
|
||||
'tests',
|
||||
'lineage',
|
||||
] as const;
|
||||
|
||||
export interface KtxMetadataUpdate {
|
||||
connectionId: string;
|
||||
table: KtxTableRef;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue