Comparing version 2.0.0 to 2.0.1
# Changelog | ||
## 2.0.1 | ||
### Bug fixes | ||
- Load config after args is parsed #27 | ||
## 2.0.0 | ||
+ Support for checking the letter Ё (`--check-yo` or `checkYo: true`). | ||
+ Dictionary of `.yaspellerrc` and specified on the command line are used together. | ||
+ Setting `fileExtensions` is not used for checking one file (`yaspeller -l ru my_file.txt`). | ||
+ Added report `error_dictionary` for the collection of typos in files. | ||
- Support for checking the letter Ё (`--check-yo` or `checkYo: true`). | ||
- Dictionary of `.yaspellerrc` and specified on the command line are used together. | ||
- Setting `fileExtensions` is not used for checking one file (`yaspeller -l ru my_file.txt`). | ||
- Added report `error_dictionary` for the collection of typos in files. | ||
## 1.1.0 | ||
+ Use settings `excludeFiles` and `fileExtensions` for checking one file. | ||
+ Support for regular expressions #18. | ||
+ Fixed detection format #19. | ||
- Use settings `excludeFiles` and `fileExtensions` for checking one file. | ||
- Support for regular expressions #18. | ||
- Fixed detection format #19. | ||
@@ -26,3 +30,2 @@ ## 1.0.6 | ||
## 1.0.3 | ||
@@ -29,0 +32,0 @@ ### Bug fixes |
@@ -16,3 +16,3 @@ 'use strict'; | ||
json, | ||
jsonConfig = utils.getConfig(program.config), | ||
jsonConfig, | ||
jsonDefault = require('../.yaspellerrc.default.json'), | ||
@@ -32,2 +32,4 @@ dictionary = [], | ||
jsonConfig = utils.getConfig(program.config); | ||
json = _.assign(jsonDefault, jsonConfig); | ||
@@ -34,0 +36,0 @@ |
@@ -13,3 +13,3 @@ { | ||
"description": "Search tool typos in the text, files and websites", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"license": "MIT", | ||
@@ -16,0 +16,0 @@ "homepage": "https://github.com/hcodes/yaspeller", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
50537
1159