williampollet / pronto-spell

Pronto runner that uses Aspell for spell checking

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pronto runner that uses Aspell for spell checking

Code Climate Build Status Gem Version Dependency Status

Pronto runner that uses Aspell for spell checking. What is Pronto?

Prerequisites

You'll need to install Aspell:

  • Arch Linux: sudo pacman -S aspell
  • OS X: (brew install aspell --lang=en)

Configuration

In order to change configuration, you need to create .pronto_spell.yaml file in your project root directory. Awailable options are:

suggestion_mode: 'fast' # default
language: 'en_US' # default
min_word_length: 5 # default
max_word_length: 999 # default is Infinity
max_suggestions_number: 3 # default
keywords: # spell check will be performed only the diff contains a word in this list
  - context
  - it
  - describe
ignored_words: # words in this list won't be marked as misspelled
  - aspell
  - boolean
  - datetime

It's also handy to have .pronto.yml. Here is configuration, designed for rails project:

spell:
  exclude:
    - 'yarn.lock'
    - 'Gemfile.lock'
    - 'Gemfile'
    - 'package.json'
    - '.*.yml'
    - '*.json'

About

Pronto runner that uses Aspell for spell checking

License:MIT License


Languages

Language:Ruby 100.0%