From b96e8293e317b8921df4ed4fd54a4411d40b0a2d Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Sat, 17 Feb 2024 18:31:04 +0100 Subject: [PATCH] fix: linting and formatting --- .eslintignore | 1 + .github/dependabot.yaml | 16 ++--- .github/renovate.json | 2 +- .github/workflows/linting.yaml | 2 +- .github/workflows/unlighthouse.yaml | 2 +- .prettierignore | 1 + .../settings/(components)/avatar-form.svelte | 24 +++---- .../notifications/notifications-form.svelte | 69 +++++++++++-------- 8 files changed, 65 insertions(+), 52 deletions(-) diff --git a/.eslintignore b/.eslintignore index 3897265..917d991 100644 --- a/.eslintignore +++ b/.eslintignore @@ -11,3 +11,4 @@ node_modules pnpm-lock.yaml package-lock.json yarn.lock +backend \ No newline at end of file diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 5661b31..afa9f64 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -1,14 +1,14 @@ version: 2 updates: - - package-ecosystem: "npm" - directory: "/" + - package-ecosystem: 'npm' + directory: '/' schedule: - interval: "daily" + interval: 'daily' reviewers: - - "bartvdbraak" - - package-ecosystem: "github-actions" - directory: "/" + - 'bartvdbraak' + - package-ecosystem: 'github-actions' + directory: '/' schedule: - interval: "weekly" + interval: 'weekly' reviewers: - - "bartvdbraak" \ No newline at end of file + - 'bartvdbraak' diff --git a/.github/renovate.json b/.github/renovate.json index 7269f0b..35fbcc2 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,4 +2,4 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:base"], "reviewers": ["bartvdbraak"] -} \ No newline at end of file +} diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index 4bb5963..e12ab60 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -35,4 +35,4 @@ jobs: uses: wearerequired/lint-action@v2.3.0 with: eslint: true - prettier: true \ No newline at end of file + prettier: true diff --git a/.github/workflows/unlighthouse.yaml b/.github/workflows/unlighthouse.yaml index 6738805..2d1f3ab 100644 --- a/.github/workflows/unlighthouse.yaml +++ b/.github/workflows/unlighthouse.yaml @@ -167,4 +167,4 @@ jobs: with: header: ${{ env.COMMENT_ID }} message: | - ⚡️ Lighthouse report cancelled \ No newline at end of file + ⚡️ Lighthouse report cancelled diff --git a/.prettierignore b/.prettierignore index cc41cea..ed08872 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,3 +2,4 @@ pnpm-lock.yaml package-lock.json yarn.lock +backend \ No newline at end of file diff --git a/src/routes/(dashboard)/settings/(components)/avatar-form.svelte b/src/routes/(dashboard)/settings/(components)/avatar-form.svelte index e3df797..0bb613b 100644 --- a/src/routes/(dashboard)/settings/(components)/avatar-form.svelte +++ b/src/routes/(dashboard)/settings/(components)/avatar-form.svelte @@ -1,17 +1,17 @@