Changelog History
-
v0.2.1.0 Changes
February 27, 2015- --whitelist [FILE] option and filter has been added. This is the final filter run against the word lists. The whitelist file should follow the same format as the blacklist. Only words that match entries in the whitelist will be output.
-
v0.2.0.0 Changes
February 19, 2015This version brings breaking changes if you typically ๐ use a non-default set of linting arguments.
๐ป Command line arguments -w/--wordlength, -d/--distance and -t/--type have been removed.
The -m/--matchlength replaces -w/--wordlength
The-w/--words, -l/--lines, and -p/--percent take Int/Int/Double, respectively. The parameter itself represents the type of lint you wish to perform, while the argument provided by the user indicates the maximum distance between matches.
๐ Intersecting lints have been added. The type/distance arguments provided (or not) are used to create a set of lists. The intersection of these lists is provided as the end result.
Some granularity in the human-readable data has been lost. Due to the addition of intersecting lints, all final results are treated as Doubles, and the "intervening distance" between word pairs are unlabeled. This is no issue if running one type of lint, but with more, it is difficult to sort out which unit is being provided.
๐ Wordlint.hs has been heavily manicured.
๐ Wordlint.Linters and the
Linter
datatype and associated functions have been taken the place of therun*Linter
family of functions in Wordlint.hs๐ Wordlint.Output has been added to house the Human/Machine functions from Wordlint.hs. These functions have been pruned and some higher-level functions added.
-
v0.1.0.2 Changes
December 01, 2014๐ Changed "-s vim" to "-s error".
๐ Changed output of "-s error" to produce better, text editor-agnostic output.
-
v0.1.0.1 Changes
November 25, 2014- โ Added labels to machine-readable output table.