From 7beb20e966259f3e107926a6a174972908686a58 Mon Sep 17 00:00:00 2001 From: Titouan Mathis Date: Mon, 5 Aug 2024 10:49:19 +0200 Subject: [PATCH] Lint files --- .github/renovate.json | 4 +--- packages/playground/src/front/js/components/ScriptEditor.ts | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 8b3088d..ea61845 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,6 +1,4 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "github>studiometa/renovate" - ] + "extends": ["github>studiometa/renovate"] } diff --git a/packages/playground/src/front/js/components/ScriptEditor.ts b/packages/playground/src/front/js/components/ScriptEditor.ts index cc4b7b3..73a1d1f 100644 --- a/packages/playground/src/front/js/components/ScriptEditor.ts +++ b/packages/playground/src/front/js/components/ScriptEditor.ts @@ -10,7 +10,7 @@ export default class ScriptEditor extends Editor { return getScript(); } - onContentChange({ args: [value]}) { + onContentChange({ args: [value] }) { setScript(value); } }