Add support of spell check via aspell (#462)
* Add support of spellcheck via aspell * Fix incorrect changes * Another incorrect change * Add newline to end of travis config * Actualize dictonary * actualize spellcheck dictonary * Add some more words * Redone stages
This commit is contained in:
committed by
Alexey Golubev
parent
57f8059dfe
commit
4ad4cbdc35
16
.travis.yml
16
.travis.yml
@@ -1,5 +1,17 @@
|
||||
language: node_js
|
||||
node_js: "10"
|
||||
|
||||
install: npm install -g markdownlint-cli
|
||||
script: markdownlint CHANGELOG.md
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- aspell
|
||||
- aspell-en
|
||||
|
||||
jobs:
|
||||
include:
|
||||
- stage: markdownlint
|
||||
script:
|
||||
- npm install -g markdownlint-cli
|
||||
- markdownlint CHANGELOG.md
|
||||
- stage: spellcheck
|
||||
script: cat CHANGELOG.md | aspell --lang=en --encoding=utf-8 --personal=./.aspell.en.pws list
|
||||
|
||||
Reference in New Issue
Block a user