Pronto runner that uses Aspell for spell checking

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

Prerequisites

You’ll need to install Aspell:

Configuration

In order to change configuration, you need to create .pronto_spell.yml 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
ignored_words: # words in this list won't be marked as misspelled
  - aspell
  - boolean
  - datetime
only_lines_matching: # spell checker will run only if the diff contains a word in this list
  - context
  - describe

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'