File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ You'll need to install Aspell:
1515
1616## Configuration
1717
18- In order to change configuration, you need to create ` .pronto_spell.yaml ` file in your project root directory. Awailable options are:
18+ In order to change configuration, you need to create ` .pronto_spell.yml ` file in your project root directory. Awailable options are:
1919
2020``` YAML
2121suggestion_mode : ' fast' # default
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ class Spell < Runner
99
1010 def ignored_words
1111 @ignored_words ||= begin
12- Set . new ( spelling_config [ 'ignored_words' ] . to_a . map ( &:downcase ) )
12+ Set . new ( spelling_config [ 'ignored_words' ] . to_a . flatten . map ( &:downcase ) )
1313 end
1414 end
1515
1616 def keywords
1717 @keywords ||= begin
18- Set . new ( spelling_config [ 'only_lines_matching' ] . to_a . map ( &:downcase ) )
18+ Set . new ( spelling_config [ 'only_lines_matching' ] . to_a . flatten . map ( &:downcase ) )
1919 end
2020 end
2121
Original file line number Diff line number Diff line change 22
33module Pronto
44 module SpellVersion
5- VERSION = '0.11.0 '
5+ VERSION = '0.11.1 '
66 end
77end
You can’t perform that action at this time.
0 commit comments