This release reimplements the CLI using click, and provides more control to the user.
Additions
- You can now set custom lengths for lines of code by passing `max_code_length` and `max_docs_length` to the checker.
- There is now a built-in default for black's default line length limits.
- You can now use `len8 --version` to get len8's version.
Breaking changes
- `Checker.extend` does not work the same as it used to, and is now an integer designed to provide an additive option to the CLI. Consider using `Checker.max_code_length` instead.
- The `-l` flag now sets the max code length to 88 and not 99 -- use `-ll` to set it to 99.
- `len8 -h` will no longer return help due to difference in how click handles it -- use `len8 --help` instead.