Add quality gates: Prettier for Astro, astro check for shared, unused SCSS variable lint (#2749)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
Paweł Kuna
2026-08-03 00:47:55 +02:00
committed by GitHub
co-authored by StarDev
parent 4d04c102d3
commit 8962710163
552 changed files with 18014 additions and 19559 deletions
+13 -13
View File
@@ -1,22 +1,22 @@
---
import Icon from './Icon.astro';
import Icon from './Icon.astro'
interface Props {
icon?: string;
class?: string;
icon?: string
class?: string
}
const { icon = 'dots-vertical', class: className } = Astro.props;
const { icon = 'dots-vertical', class: className } = Astro.props
---
<div class:list={['dropdown', className]}>
<a href="#" class="btn btn-action" data-bs-toggle="dropdown" aria-expanded="false">
<Icon name={icon} />
</a>
<div class="dropdown-menu dropdown-menu-end">
<a href="#" class="dropdown-item">Import</a>
<a href="#" class="dropdown-item">Export</a>
<a href="#" class="dropdown-item">Download</a>
<a href="#" class="dropdown-item text-danger">Delete</a>
</div>
<a href="#" class="btn btn-action" data-bs-toggle="dropdown" aria-expanded="false">
<Icon name={icon} />
</a>
<div class="dropdown-menu dropdown-menu-end">
<a href="#" class="dropdown-item">Import</a>
<a href="#" class="dropdown-item">Export</a>
<a href="#" class="dropdown-item">Download</a>
<a href="#" class="dropdown-item text-danger">Delete</a>
</div>
</div>