This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
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 #69 from lzchen/release
- Loading branch information
Showing
73 changed files
with
5,878 additions
and
642 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,12 @@ | ||
[run] | ||
branch = True | ||
omit = | ||
azure_monitor/setup.py | ||
azure_monitor/tests/* | ||
|
||
[report] | ||
fail_under = 98 | ||
show_missing = True | ||
omit = | ||
azure_monitor/setup.py | ||
azure_monitor/tests/* |
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,18 @@ | ||
[flake8] | ||
ignore = | ||
E501 # line too long, defer to black | ||
F401 # unused import, defer to pylint | ||
W503 # allow line breaks after binary ops, not after | ||
E203 # allow whitespace before ':' (https://github.com/psf/black#slices) | ||
exclude = | ||
.bzr | ||
.git | ||
.hg | ||
.svn | ||
.tox | ||
CVS | ||
.venv*/ | ||
venv*/ | ||
target | ||
__pycache__ | ||
|
Validating CODEOWNERS rules …
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 @@ | ||
# Code owners file. | ||
# This file controls who is tagged for review for any given pull request. | ||
|
||
# For anything not explicitly taken by someone else: | ||
* @hectorhdzg @lzchen |
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 |
---|---|---|
|
@@ -102,3 +102,6 @@ venv.bak/ | |
|
||
# mypy | ||
.mypy_cache/ | ||
|
||
# vscode | ||
.vscode/ |
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,16 @@ | ||
[settings] | ||
include_trailing_comma=True | ||
force_grid_wrap=0 | ||
use_parentheses=True | ||
line_length=79 | ||
|
||
; 3 stands for Vertical Hanging Indent, e.g. | ||
; from third_party import ( | ||
; lib1, | ||
; lib2, | ||
; lib3, | ||
; ) | ||
; docs: https://github.com/timothycrosley/isort#multi-line-output-modes | ||
multi_line_output=3 | ||
skip=target | ||
known_third_party=opentelemetry |
Oops, something went wrong.