From 9b1908d40618e78309286dd86c98426932afd57e Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Sun, 17 Mar 2024 15:01:22 +0100 Subject: [PATCH] chore: fix linting issues --- src/utils/stats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/stats.ts b/src/utils/stats.ts index f5dddd3..be3e247 100644 --- a/src/utils/stats.ts +++ b/src/utils/stats.ts @@ -1,10 +1,10 @@ import fs from 'fs'; import path from 'path'; +import { parseJsonLine } from './jsonl'; import { name, version } from '../../package.json'; import { env } from '../utils/env'; import { AtlasValidationError } from '../utils/errors'; -import { parseJsonLine } from './jsonl'; export type StatsMetadata = { name: string; version: string };