All Projects → fromkk → Spellchecker

fromkk / Spellchecker

Licence: mit
SpellChecker for Xcode

Programming Languages

swift
15916 projects

Labels

Projects that are alternatives of or similar to Spellchecker

Swiftplate
Easily generate cross platform Swift framework projects from the command line
Stars: ✭ 1,746 (+2110.13%)
Mutual labels:  cli, xcode
Gltf To Usdz Research
Research and proof of concept of converting glTF to USDZ for AR Quick Look (iOS 12+).
Stars: ✭ 164 (+107.59%)
Mutual labels:  cli, xcode
Xcassetpacker
A command line tool for converting a folder of images into an .xcasset package for Xcode
Stars: ✭ 150 (+89.87%)
Mutual labels:  cli, xcode
Swiftplaygroundscli
Easily generate Swift Playgrounds from your command line 👨‍💻
Stars: ✭ 103 (+30.38%)
Mutual labels:  cli, xcode
Swiftkit
Start your next Open-Source Swift Framework 📦
Stars: ✭ 785 (+893.67%)
Mutual labels:  cli, xcode
Natrium
A pre-build (Swift) script to alter your Xcode project at pre-build-time per environment, build configuration and target.
Stars: ✭ 131 (+65.82%)
Mutual labels:  cli, xcode
Licenseplist
A license list generator of all your dependencies for iOS applications
Stars: ✭ 1,996 (+2426.58%)
Mutual labels:  cli, xcode
Appicon
AppIcon generates *.appiconset contains each resolution image for iOS
Stars: ✭ 1,454 (+1740.51%)
Mutual labels:  cli, xcode
Buildxl
Microsoft Build Accelerator
Stars: ✭ 676 (+755.7%)
Mutual labels:  cli, xcode
Shenzhen
CLI for Building & Distributing iOS Apps (.ipa Files)
Stars: ✭ 4,668 (+5808.86%)
Mutual labels:  cli, xcode
Swiftcolorgen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors
Stars: ✭ 152 (+92.41%)
Mutual labels:  cli, xcode
Swiftinfo
📊 Extract and analyze the evolution of an iOS app's code.
Stars: ✭ 880 (+1013.92%)
Mutual labels:  cli, xcode
Xcodegen
A Swift command line tool for generating your Xcode project
Stars: ✭ 5,032 (+6269.62%)
Mutual labels:  cli, xcode
Xcbt
⌛️xcbt shows Xcode build time of a specified project.
Stars: ✭ 14 (-82.28%)
Mutual labels:  cli, xcode
Mod Pbxproj
A python module to manipulate XCode projects
Stars: ✭ 959 (+1113.92%)
Mutual labels:  cli, xcode
Batchit
simple jobs submission via command-line for AWS batch
Stars: ✭ 77 (-2.53%)
Mutual labels:  cli
Update xcode plugins
No more messing with plugin UUIDs; Plugins on Xcode 8+!
Stars: ✭ 1,212 (+1434.18%)
Mutual labels:  xcode
Ios Toolbox
My iOS dev toolbox.
Stars: ✭ 76 (-3.8%)
Mutual labels:  xcode
Tools
Game development tools for the Amethyst engine
Stars: ✭ 76 (-3.8%)
Mutual labels:  cli
Labeler
Manage labels on GitHub as code
Stars: ✭ 78 (-1.27%)
Mutual labels:  cli

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/[email protected] SpellChecker

Manual

git clone [email protected]: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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].