Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@nitra/cspell-dict/cspell-ext.json"
],
"words": [
"appindicator",
"autobins",
"cdylib",
"chrono",
Expand All @@ -35,6 +36,10 @@
"journaling",
"keypair",
"kfse",
"libayatana",
"librsvg",
"libwebkit",
"libxdo",
"lipo",
"mgmt",
"microlesson",
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/lint-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,19 @@ jobs:

- uses: ./.github/actions/setup-bun-deps

- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy

- uses: Swatinem/rust-cache@v2

# Системні залежності Tauri v2 на Linux (glib/gtk/webkit) — без них
# clippy у rust/check не збере src-tauri (як у lint-rust.yml).
- name: Install Tauri system deps
run: >-
sudo apt-get update && sudo apt-get install -y libwebkit2gtk-4.1-dev
libgtk-3-dev librsvg2-dev libxdo-dev libssl-dev
libayatana-appindicator3-dev

- name: Repo-wide lint
run: bunx n-rules lint --repo-wide --no-fix
5 changes: 0 additions & 5 deletions .github/workflows/lint-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,5 @@ jobs:

- uses: ./.github/actions/setup-bun-deps

- name: StyleLint
run: npx stylelint '**/*.{css,scss,vue}' --fix
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: StyleLint
run: bunx n-rules lint style --no-fix
Loading