0.01
Low commit activity in last 3 years
No release in over a year
Pronto runner that uses Aspell for spell checking
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 12.0
~> 3.4
~> 1.2

Runtime

~> 1.1.0
~> 0.11.0
 Project Readme

Pronto runner that uses Aspell for spell checking

Code Climate Build Status Gem Version

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.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'