uhooi / SpellChecker

SpellChecker for Xcode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SpellChecker for Xcode

GitHub Actions LICENSE Tag

screenshot

Recommended environment

  • Swift 5.1
  • Xcode 11.2.1
  • macOS 10.15

Install

Mint

mint install fromkk/SpellChecker@0.0.3 SpellChecker

Manual

git clone git@github.com:fromkk/SpellChecker.git
cd ./SpellChecker
make install

Usage

Write to your Run script like a below code.

if ! [ -f /usr/local/bin/SpellChecker ]; then
    echo "SpellChecker not installed"
    exit 0
fi

git_path=/usr/local/bin/git
files=$($git_path diff --diff-filter=d --name-only -- "*.swift" "*.h" "*.m")
if (test -z $files) || (test ${#files[@]} -eq 0); then
  echo "no files changed."
  exit 0
fi

options=""
for file in $files
do
  options="$options $SRCROOT/$file"
done

/usr/local/bin/SpellChecker -- $options

Whitelist

If you want ignore some warnings, make YAML file to your directory.
For example:

whiteList:
  - kazuya
  - ueoka
  - fromkk

And set --yml options.

/usr/local/bin/SpellChecker --yml $SRCROOT/swift-keywords.yaml -- $options

About

SpellChecker for Xcode

License:MIT License


Languages

Language:Swift 95.8%Language:Makefile 4.2%