Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Dec 12, 2021
1 parent 40d2f0c commit 6a2c91f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom/plugins/forgit
2 changes: 1 addition & 1 deletion custom/plugins/fzf-tab
2 changes: 1 addition & 1 deletion custom/plugins/zsh-syntax-highlighting
2 changes: 1 addition & 1 deletion custom/plugins/zsh-z
Submodule zsh-z updated 3 files
+12 −0 .github/FUNDING.yml
+21 −3 README.md
+19 −2 zsh-z.plugin.zsh
2 changes: 1 addition & 1 deletion custom/themes/powerlevel10k

1 comment on commit 6a2c91f

@github-actions
Copy link

@github-actions github-actions bot commented on 6a2c91f Dec 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the action log for details.

Unrecognized words (2)

forgit
powerlevel

Available dictionaries could cover words not in the dictionary

cspell:cpp/cpp.txt (104293) covers 281 of them
cspell:filetypes/filetypes.txt (337) covers 56 of them
cspell:django/django.txt (2342) covers 53 of them
cspell:aws/aws.txt (1485) covers 47 of them
cspell:golang/go.txt (7745) covers 38 of them
cspell:python/python.txt (364) covers 26 of them
cspell:npm/npm.txt (671) covers 25 of them
cspell:html/html.txt (542) covers 19 of them
cspell:java/java.txt (33524) covers 18 of them
cspell:css/css.txt (993) covers 17 of them
cspell:scala/scala.txt (2752) covers 14 of them
cspell:fullstack/fullstack.txt (181) covers 14 of them
cspell:ruby/ruby.txt (354) covers 10 of them
cspell:lua/lua.txt (391) covers 10 of them
cspell:rust/rust.txt (112) covers 7 of them
cspell:php/php.txt (9785) covers 6 of them
cspell:csharp/csharp.txt (123) covers 6 of them
cspell:bash/bash-words.txt (22) covers 4 of them
cspell:dotnet/dotnet.txt (9824) covers 3 of them
cspell:node/node.txt (9611) covers 2 of them
cspell:haskell/haskell.txt (33) covers 1 of them
cspell:elixir/elixir.txt (67) covers 1 of them
cspell:ada/ada.txt (72) covers 1 of them

Consider adding them using:

      with:
        extra_dictionaries:
          cspell:cpp/cpp.txt
          cspell:filetypes/filetypes.txt
          cspell:django/django.txt
          cspell:aws/aws.txt
          cspell:golang/go.txt
          cspell:python/python.txt
          cspell:npm/npm.txt
          cspell:html/html.txt
          cspell:java/java.txt
          cspell:css/css.txt
          cspell:scala/scala.txt
          cspell:fullstack/fullstack.txt
          cspell:ruby/ruby.txt
          cspell:lua/lua.txt
          cspell:rust/rust.txt
          cspell:php/php.txt
          cspell:csharp/csharp.txt
          cspell:bash/bash-words.txt
          cspell:dotnet/dotnet.txt
          cspell:node/node.txt
          cspell:haskell/haskell.txt
          cspell:elixir/elixir.txt
          cspell:ada/ada.txt

To stop checking additional dictionaries, add:

      with:
        check_extra_dictionaries: ''
To accept these unrecognized words as correct, run the following commands

... in a clone of the git@github.com:kareefardi/oh-my-zsh.git repository
on the master branch:

update_files() {
perl -e '
my $new_expect_file=".github/actions/spelling/expect.txt";
use File::Path qw(make_path);
use File::Basename qw(dirname);
make_path (dirname($new_expect_file));
open FILE, q{<}, $new_expect_file; chomp(my @words = <FILE>); close FILE;
my @add=qw('"$patch_add"');
my %items; @items{@words} = @words x (1); @items{@add} = @add x (1);
@words = sort {lc($a)."-".$a cmp lc($b)."-".$b} keys %items;
open FILE, q{>}, $new_expect_file; for my $word (@words) { print FILE "$word\n" if $word =~ /\w/; };
close FILE;
system("git", "add", $new_expect_file);
'
}

comment_json=$(mktemp)
curl -L -s -S \
-H "Content-Type: application/json" \
"https://api.github.com/repos/kareefardi/oh-my-zsh/comments/61788684" > "$comment_json"
comment_body=$(mktemp)
jq -r ".body // empty" "$comment_json" > $comment_body
rm $comment_json

patch_add=$(perl -e '$/=undef; $_=<>; if (m{Unrecognized words[^<]*</summary>\n*```\n*([^<]*)```\n*</details>$}m) { print "$1" } elsif (m{Unrecognized words[^<]*\n\n((?:\w.*\n)+)\n}m) { print "$1" };' < "$comment_body")

update_files
rm $comment_body
git add -u
If the flagged items do not appear to be text

If items relate to a ...

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

  • binary file.

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

Please sign in to comment.