style: fix linting complaints
This commit is contained in:
@@ -2,5 +2,8 @@
|
|||||||
"extends": ["markuplint:recommended-static-html"],
|
"extends": ["markuplint:recommended-static-html"],
|
||||||
"parser": {
|
"parser": {
|
||||||
".astro$": "@markuplint/astro-parser"
|
".astro$": "@markuplint/astro-parser"
|
||||||
|
},
|
||||||
|
"rules": {
|
||||||
|
"use-list": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,11 +2,17 @@
|
|||||||
|
|
||||||
/dist/
|
/dist/
|
||||||
|
|
||||||
|
*.html
|
||||||
*.ico
|
*.ico
|
||||||
|
*.jpg
|
||||||
|
*.js
|
||||||
*.json
|
*.json
|
||||||
*.md
|
*.md
|
||||||
*.mjs
|
*.mjs
|
||||||
|
*.mts
|
||||||
*.png
|
*.png
|
||||||
*.svg
|
*.svg
|
||||||
|
*.ts
|
||||||
|
*.vim
|
||||||
*.webp
|
*.webp
|
||||||
*.yaml
|
*.yaml
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// @ts-check
|
// @ts-check
|
||||||
import { defineConfig } from "astro/config";
|
|
||||||
import tailwindcss from "@tailwindcss/vite";
|
import tailwindcss from "@tailwindcss/vite";
|
||||||
|
import { defineConfig } from "astro/config";
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import js from "@eslint/js";
|
import js from "@eslint/js";
|
||||||
import eslintPluginAstro from "eslint-plugin-astro";
|
import eslintPluginAstro from "eslint-plugin-astro";
|
||||||
|
import jsxA11y from "eslint-plugin-jsx-a11y";
|
||||||
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
||||||
import { defineConfig } from "eslint/config";
|
import { defineConfig } from "eslint/config";
|
||||||
import jsxA11y from "eslint-plugin-jsx-a11y";
|
|
||||||
|
|
||||||
export default defineConfig([
|
export default defineConfig([
|
||||||
{
|
{
|
||||||
ignores: ["./dist/"],
|
ignores: ["./dist/", "**/*.html"],
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,8 +13,4 @@ const {
|
|||||||
} = Astro.props;
|
} = Astro.props;
|
||||||
---
|
---
|
||||||
|
|
||||||
<SvgComponent
|
<SvgComponent class:list={[className, "inline h-[1em]"]} {role} {...rest} />
|
||||||
class:list={[className, "inline h-[1em]"]}
|
|
||||||
{role}
|
|
||||||
{...rest}
|
|
||||||
/>
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
|
|||||||
</p>
|
</p>
|
||||||
<section class="text-soft">
|
<section class="text-soft">
|
||||||
<p><strong>Fachinformatiker</strong> für Anwendungsentwicklung</p>
|
<p><strong>Fachinformatiker</strong> für Anwendungsentwicklung</p>
|
||||||
<p><strong>Software Developer & Consultant</strong> @ blecon</p>
|
<p><strong>Software Developer & Consultant</strong> @ blecon</p>
|
||||||
</section>
|
</section>
|
||||||
<nav aria-label="Seitennavigation" class="page-nav">
|
<nav aria-label="Seitennavigation" class="page-nav">
|
||||||
<ul class="flex">
|
<ul class="flex">
|
||||||
|
|||||||
Reference in New Issue
Block a user