-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from carstencodes/prepare/milestones/1.2.0
Prepare milestone 1.2.0
- Loading branch information
Showing
5 changed files
with
27 additions
and
2 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,5 @@ | ||
# Changelog | ||
|
||
## Bug-fixes | ||
|
||
* List values will be converted correctly from toml configuration file to ini-file. #1 |
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,9 @@ | ||
# Changelog | ||
|
||
## Bug-fixes | ||
|
||
* Flake8 reads relative paths relative from the path of the configuration file, not to the working directory. #3 | ||
|
||
## Hints for upgrading | ||
|
||
* Add `.flake518_*.cfg` to your git ignore files. |
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ dist | |
__pycache__ | ||
__pypackages__ | ||
src/flake518.egg-info/ | ||
.flake518_*.cfg |
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,10 @@ | ||
# Authors | ||
|
||
## Main authors | ||
|
||
* Carsten Igel (@carstencodes) | ||
|
||
## Contributors | ||
|
||
* Benjamin Eskola (@benjamineskola) | ||
* Fixed #3 with #4 |
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 @@ | ||
[project] | ||
name = "flake518" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
description = "A small wrapper around flake8 to support PEP518 pyproject.toml as configuration file." | ||
authors = [ | ||
{name = "Carsten Igel", email = "[email protected]"}, | ||
|
@@ -66,4 +66,4 @@ statistics=true | |
show-source=true | ||
max-line-length=79 | ||
doctests=true | ||
# exclude=[".git", "__pypackages__", ".vscode", ".mypy_cache"] | ||
exclude=[".git", "__pypackages__", ".vscode", ".mypy_cache"] |