From 5181a8195a1d8970b933c7f6fd6c3af845ce2fa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Correa=20Casablanca?= Date: Tue, 16 Apr 2024 11:35:10 +0200 Subject: [PATCH] refactor: fix code style issues Signed-off-by: Andres Correa Casablanca --- website/docs/config/project.mdx | 11 +++++------ website/tsconfig.json | 9 +++++++-- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/website/docs/config/project.mdx b/website/docs/config/project.mdx index bea796e9dbf..37843a1f55c 100644 --- a/website/docs/config/project.mdx +++ b/website/docs/config/project.mdx @@ -984,13 +984,12 @@ The [strategy](../concepts/task-inheritance#merge-strategies) to use when mergin -Creates an exclusive lock on a "virtual resource", preventing other tasks using -the same "virtual resource" from running concurrently. +Creates an exclusive lock on a "virtual resource", preventing other tasks using the same "virtual +resource" from running concurrently. -If you have many tasks that require exclusive access to a resource that can't be -tracked by Moon (like a database, an ignored file, a file that's not part of -the project, or a remote resource) you can use the `mutex` option to prevent them -from running at the same time. +If you have many tasks that require exclusive access to a resource that can't be tracked by Moon +(like a database, an ignored file, a file that's not part of the project, or a remote resource) you +can use the `mutex` option to prevent them from running at the same time. ```yaml title="moon.yml" {5} tasks: diff --git a/website/tsconfig.json b/website/tsconfig.json index 6f4159813d4..f9cccdc77c0 100644 --- a/website/tsconfig.json +++ b/website/tsconfig.json @@ -1,5 +1,8 @@ { - "extends": ["../tsconfig.options.json", "@docusaurus/tsconfig"], + "extends": [ + "../tsconfig.options.json", + "@docusaurus/tsconfig" + ], "compilerOptions": { "emitDeclarationOnly": true, "noEmit": false, @@ -7,7 +10,9 @@ "verbatimModuleSyntax": false, "baseUrl": ".", "paths": { - "@site/*": ["./*"] + "@site/*": [ + "./*" + ] } }, "include": [