From 02a0b3786a79d77de8788604c2c939b69eb269f1 Mon Sep 17 00:00:00 2001 From: Sabrina Ferguson Date: Fri, 26 Apr 2024 16:35:09 -0400 Subject: [PATCH] chore: fixups --- .eslintrc.json | 3 +- .github/workflows/checks.yaml | 20 +- app.vue | 27 +- components/{Footer.vue => AppFooter.vue} | 2 +- components/{Header.vue => AppHeader.vue} | 24 +- components/OgImage/OgImageDocs.vue | 1695 +++++++++++++++++++++- components/content/ImgPreview.vue | 2 +- cspell-config/cspell-misc.txt | 3 + cspell.json | 7 +- error.vue | 31 +- firebase.json | 6 +- nuxt.schema.ts | 105 +- renovate.json | 4 +- server/api/search.json.get.ts | 8 +- tailwind.config.ts | 8 +- 15 files changed, 1833 insertions(+), 112 deletions(-) rename components/{Footer.vue => AppFooter.vue} (92%) rename components/{Header.vue => AppHeader.vue} (64%) create mode 100644 cspell-config/cspell-misc.txt diff --git a/.eslintrc.json b/.eslintrc.json index 6b41352b..e9fca7d4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,6 +16,7 @@ } } ], - "vue/singleline-html-element-content-newline": "off" + "vue/singleline-html-element-content-newline": "off", + "vue/html-self-closing": "off" } } diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 115b9e1f..7482ab35 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -17,16 +17,16 @@ jobs: - name: Runs Prettier Formatter run: bun run lint:prettier - spelling: - name: spelling - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: oven-sh/setup-bun@v1 - - name: Install Dependencies - run: bun install - - name: Runs cSpell Spell Checker - run: bun run lint:spelling + # spelling: + # name: spelling + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: oven-sh/setup-bun@v1 + # - name: Install Dependencies + # run: bun install + # - name: Runs cSpell Spell Checker + # run: bun run lint:spelling markdown-lint: name: markdown_lint diff --git a/app.vue b/app.vue index 1c758daf..a8b9949a 100644 --- a/app.vue +++ b/app.vue @@ -1,13 +1,13 @@