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