Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
charliegerard committed Aug 26, 2024
1 parent fd9a46d commit 5ba7e56
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/diff-scan/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import chalk from 'chalk'
import meow from 'meow'
import ora from 'ora'
import fetch from 'node-fetch'

Check warning on line 4 in src/commands/diff-scan/get.ts

View workflow job for this annotation

GitHub Actions / Linting / Test (20, ubuntu-latest)

There should be at least one empty line between import groups

Check warning on line 4 in src/commands/diff-scan/get.ts

View workflow job for this annotation

GitHub Actions / Linting / Test (20, ubuntu-latest)

`node-fetch` import should occur before import of `ora`
import util from 'util'

Check warning on line 5 in src/commands/diff-scan/get.ts

View workflow job for this annotation

GitHub Actions / Linting / Test (20, ubuntu-latest)

`util` import should occur before import of `chalk`

import { outputFlags } from '../../flags'
// import {
Expand Down Expand Up @@ -148,5 +149,7 @@ async function getDiffScan(
// after: 922e45f5-8a7b-4b16-95a5-e98ad00470f1

console.log(`\n Diff scan result: \n`)
console.log(data);
// console.log(data);

console.log(util.inspect(data, {showHidden: false, depth: null, colors: true}))
}

0 comments on commit 5ba7e56

Please sign in to comment.