Skip to content

Commit

Permalink
Remove unnecessary ignoreWords in spell check config file
Browse files Browse the repository at this point in the history
  • Loading branch information
IT-VBFK committed Jan 5, 2023
1 parent 5439f38 commit c069f40
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Expand Up @@ -22,4 +22,4 @@ jobs:
fetch-depth: 0
name: Check out the code
- name: Run NUKE spell check
run: ./build.sh Spellcheck
run: ./build.sh --target SpellCheck
4 changes: 2 additions & 2 deletions .nuke/build.schema.json
Expand Up @@ -84,7 +84,7 @@
"Pack",
"Push",
"Restore",
"Spellcheck",
"SpellCheck",
"TestFrameworks",
"UnitTests"
]
Expand All @@ -108,7 +108,7 @@
"Pack",
"Push",
"Restore",
"Spellcheck",
"SpellCheck",
"TestFrameworks",
"UnitTests"
]
Expand Down
2 changes: 1 addition & 1 deletion Build/Build.cs
Expand Up @@ -259,7 +259,7 @@ class Build : NukeBuild
(v, path) => v.SetTargetPath(path)));
});

Target Spellcheck => _ => _
Target SpellCheck => _ => _
.Executes(() =>
{
static void LogErrorAsWarning(OutputType outputType, string message)
Expand Down
3 changes: 0 additions & 3 deletions cSpell.json
Expand Up @@ -11,9 +11,6 @@
"refactorings",
"struct"
],
"ignoreWords": [
"Gallio"
],
"patterns": [
{
"name": "Markdown links",
Expand Down

0 comments on commit c069f40

Please sign in to comment.