diff --git a/cli/modules/tasks.ts b/cli/modules/tasks.ts index 607edcb5..c24fa23b 100644 --- a/cli/modules/tasks.ts +++ b/cli/modules/tasks.ts @@ -10,9 +10,9 @@ export type TaskRecord = Record; export async function getTasks() { const tasks: TaskRecord = { - fmt: ["fmt"], - lint: ["lint"], - test: ["test"], + fmt: ["fmt", "--no-config"], + lint: ["lint", "--no-config"], + test: ["test", "--no-config"], }; const config = await findFileUp(Deno.cwd(), "deno.json", "deno.jsonc"); if (!config) {