-
Notifications
You must be signed in to change notification settings - Fork 17
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 #43 from homebysix/dev
2.0.0 merge to main
- Loading branch information
Showing
8 changed files
with
61 additions
and
50 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,19 @@ | ||
[flake8] | ||
select = B,C,E,F,P,W,B9 | ||
max-line-length = 80 | ||
### DEFAULT IGNORES FOR 4-space INDENTED PROJECTS ### | ||
# E127, E128 are hard to silence in certain nested formatting situations. | ||
# E203 doesn't work for slicing | ||
# E265, E266 talk about comment formatting which is too opinionated. | ||
# E402 warns on imports coming after statements. There are important use cases | ||
# that require statements before imports. | ||
# E501 is not flexible enough, we're using B950 instead. | ||
# E722 is a duplicate of B001. | ||
# P207 is a duplicate of B003. | ||
# P208 is a duplicate of C403. | ||
# W503 talks about operator formatting which is too opinionated. | ||
ignore = E127, E128, E203, E265, E266, E402, E501, E722, P207, P208, W503 | ||
exclude = | ||
.git, | ||
.hg, | ||
max-complexity = 65 |
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 @@ | ||
[settings] | ||
multi_line_output=3 | ||
include_trailing_comma=True | ||
force_grid_wrap=0 | ||
use_parentheses=True | ||
include_trailing_comma=True | ||
line_length=88 | ||
multi_line_output=3 | ||
use_parentheses=True |
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
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,3 +1,3 @@ | ||
from .docklib import * | ||
|
||
__version__ = "1.3.0" | ||
__version__ = "2.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pyobjc==10.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