mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-01 18:58:49 -07:00
- Add 0BSD LICENSE (matches gogrlx/grlx)
- Add GitHub Actions CI workflow (build + eslint)
- Fix eslint config: add ignores for .astro/dist, add typescript parser deps
- Update README: replace npm boilerplate with bun commands, add badges
- Document rc.d (BSD) service provider alongside systemd
- Update service ingredient to reference provider interface instead of claiming systemd-only
- Fix frontmatter: desc -> description in groups.md and user.md
- Close unclosed :::note directive in ingredients overview
- Fix typo in ingredients overview ('Check them out the list' -> 'Check out the list')
- Update astro 5.17.3 -> 5.18.0
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
import eslintPluginAstro from 'eslint-plugin-astro'
|
|
|
|
export default [
|
|
{ ignores: ['.astro/**', 'dist/**'] },
|
|
...eslintPluginAstro.configs['flat/recommended'],
|
|
]
|