-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from CelticBoozer/development
ci: add cspell workflow and configs
- Loading branch information
Showing
12 changed files
with
155 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", | ||
"version": "0.2", | ||
"language": "en", | ||
"ignoreRegExpList": ["/<[^>]*>/", "/&[a-z]+;/", "/`.*`/"], | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "repo_soft", | ||
"path": "repo_soft.txt", | ||
"addWords": true | ||
} | ||
], | ||
"dictionaries": ["en_US", "softwareTerms", "repo_soft"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
pacman | ||
cliphist | ||
rofi | ||
maint | ||
sysupg | ||
btop | ||
waybar | ||
fontconfig | ||
kanshi | ||
neofetch | ||
acenoster | ||
backlighting | ||
paru | ||
drun | ||
swappy | ||
touchpad | ||
keybind | ||
keybinds | ||
full-screen | ||
swaylock | ||
swayidle | ||
swaync | ||
sworkstyle | ||
swaybar | ||
wttrbar | ||
wttr | ||
pulseaudio | ||
pulsemixer | ||
easyeffects | ||
nmtui | ||
sysz | ||
pacnew | ||
wlroots | ||
swayosd | ||
yazi | ||
keymap | ||
zathura | ||
neovim | ||
traceback | ||
shellcheck | ||
yamlfmt | ||
gruvbox | ||
pipewire | ||
ohmyzsh | ||
advcpmv | ||
navi | ||
lazygit | ||
lazygit | ||
vesktop | ||
krita | ||
wallpappers | ||
nvim | ||
greetd | ||
tuigreet | ||
lazydocker | ||
aurpkglist | ||
pkglist | ||
logind | ||
Aenami |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: cspell | ||
# yamllint disable-line rule:truthy | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- development | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
check: | ||
name: Spellcheck project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: cspell run | ||
uses: streetsidesoftware/cspell-action@v6 | ||
with: | ||
# files: | | ||
# *.md | ||
# .*.md | ||
# **.md | ||
# .*/*.md | ||
# .*/**/.*.md | ||
files: "**/*.md" | ||
check_dot_files: true | ||
suggestions: false | ||
# Limit the files checked to the ones in the pull request or push. | ||
incremental_files_only: true | ||
# Path to `cspell.json` | ||
config: '.github/cspell/cspell.json' | ||
# Log progress and other information during the action execution. | ||
# Default: false | ||
verbose: false | ||
# Use the `files` setting found in the CSpell configuration instead of `input.files`. | ||
use_cspell_files: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters