-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add support for various string concentration * refactor handling of certain nodes
1 parent
5d89a04
commit fa95756
Showing
4 changed files
with
334 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Changelog | ||
|
||
## [Unreleased] | ||
|
||
## [v1.1.0] - 2022-12-20 | ||
|
||
### Added | ||
|
||
- Support for string concentration using ` ` | ||
- Support for string concentration using `+` | ||
- Support for string concentration using `%` | ||
- Support for string concentration using `str.format` | ||
- Support for string concentration using `str.join` | ||
|
||
## [v1.0.1] - 2022-12-19 | ||
|
||
### Added | ||
|
||
- Detailed descriptions for how to resolve linting errors | ||
|
||
## [v1.0.0] - 2022-12-19 | ||
|
||
### Added | ||
|
||
- Lint checks for builtin exceptions | ||
- Lint checks for custom exceptions | ||
- Lint checks for exceptions raised with non-constant arguments | ||
- Lint checks for re-raised exceptions | ||
|
||
[//]: # "Release links" | ||
[v1.1.0]: https://github.com/jdkandersson/flake8-error-link/releases/v1.1.0 | ||
[v1.0.1]: https://github.com/jdkandersson/flake8-error-link/releases/v1.0.1 | ||
[v1.0.0]: https://github.com/jdkandersson/flake8-error-link/releases/v1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "flake8-error-link" | ||
version = "1.0.1" | ||
version = "1.1.0" | ||
description = "A linter that ensures all raised Exceptions include an error with a link to more information" | ||
authors = ["David Andersson <[email protected]>"] | ||
license = "Apache 2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters