mirror of
https://github.com/mnaoumov/obsidian-backlink-full-path.git
synced 2026-07-22 12:10:28 +00:00
7 lines
273 B
TypeScript
7 lines
273 B
TypeScript
import process from 'node:process';
|
|
import { wrapCliTask } from 'obsidian-dev-utils/script-utils/cli-utils';
|
|
import { spellcheck } from 'obsidian-dev-utils/script-utils/linters/cspell';
|
|
|
|
const [, , ...paths] = process.argv;
|
|
|
|
await wrapCliTask(() => spellcheck({ paths }));
|