Skip to content

Commit

Permalink
Merge pull request #293 from epage/parse
Browse files Browse the repository at this point in the history
Detect non-identifiers to ignore
  • Loading branch information
epage committed Jun 29, 2021
2 parents a46cc76 + 9a0d754 commit effc21e
Show file tree
Hide file tree
Showing 5 changed files with 431 additions and 145 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

#### Change of Behavior

- `ignore-hex` and `identifier-leading-digit` are deprecated and `typos` acts as
if `ignore-hex=true` and `identifier-leading-digit=false`.

#### Features

- Automatically ignore
- UUIDs
- SHAs
- base64 encoded data (must be at least 90 bytes)
- emails
- URLs

#### Performance

- Due to new literal detection, finding identifiers is takes 10x longer.
Combined with word splitting, its only takes 3x longer. The majority of the
time is spent in dictionary lookups, so we don't expect this to have too much impact in the end.

## [1.0.10] - 2021-06-28

#### Bug Fixes
Expand Down

0 comments on commit effc21e

Please sign in to comment.