Skip to content

Commit 3345ea7

Browse files
ci: Fix Lint -- Workflow Bot (#6266)
Co-authored-by: Jason3S <3740137+Jason3S@users.noreply.github.com>
1 parent 441844b commit 3345ea7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

examples/invoke-cspell/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Example of invoking CSpell Lint programmatically.
88
import { lint } from 'cspell';
99

1010
await lint(['.'], {
11-
progress: true,
12-
summary: true,
13-
// progress: false,
14-
// summary: false,
15-
// wordsOnly: true,
16-
// config: './cspell.config.yaml',
11+
progress: true,
12+
summary: true
13+
// progress: false,
14+
// summary: false,
15+
// wordsOnly: true,
16+
// config: './cspell.config.yaml',
1717
});
1818
```
1919

packages/flatpack-json/src/Flatpack.test.mts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { createPatch } from 'diff';
55
import { describe, expect, test } from 'vitest';
66

77
import { FlatpackStore, stringify, toJSON } from './Flatpack.mjs';
8+
import { deepEqual } from './proxy.mts';
89
import { stringifyFlatpacked } from './stringify.mjs';
910
import { fromJSON } from './unpack.mjs';
10-
import { deepEqual } from './proxy.mts';
1111

1212
const urlFileList = new URL('../fixtures/fileList.txt', import.meta.url);
1313
const baseFilename = new URL(import.meta.url).pathname.split('/').slice(-1).join('').split('.').slice(0, -2).join('.');

0 commit comments

Comments
 (0)