style 💎: Remove unnecessary blank line and ensure consistent formatting #25

Merged
Jose merged 4 commits from dev into main 2026-02-14 12:09:29 +01:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 18e0ed96ea - Show all commits

View File

@@ -2,7 +2,10 @@
# .gitea/workflows/ansible-lint.yml
name: ansible-lint
on: [issues, push]
on:
push:
Review

[Lines 5-6] [Score: 3] Unnecessary empty line between trigger events. Consider removing it for consistency and readability.

[Lines 5-6] [Score: 3] Unnecessary empty line between trigger events. Consider removing it for consistency and readability.
issues:
types: [opened]
jobs:
build:

View File

@@ -2,7 +2,10 @@
# .gitea/workflows/markdown-lint.yml
name: Markdown Lint
Review

[Lines 2-3] [Score: 2] Workflow is now triggered for both push events and opened issues, which could impact performance if the workflows are resource-intensive. Consider limiting the workflow runs to reduce potential overhead.

[Lines 2-3] [Score: 2] Workflow is now triggered for both push events and opened issues, which could impact performance if the workflows are resource-intensive. Consider limiting the workflow runs to reduce potential overhead.
on: [issues, push]
on:
push:
issues:
types: [opened]
jobs:
build: