Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit ecb13f0

Browse files
authored
Merge pull request #69 from lzchen/release
2 parents 3f85926 + e0bd6f0 commit ecb13f0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+5878
-642
lines changed

.coveragerc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[run]
2+
branch = True
3+
omit =
4+
azure_monitor/setup.py
5+
azure_monitor/tests/*
6+
7+
[report]
8+
fail_under = 98
9+
show_missing = True
10+
omit =
11+
azure_monitor/setup.py
12+
azure_monitor/tests/*

.flake8

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[flake8]
2+
ignore =
3+
E501 # line too long, defer to black
4+
F401 # unused import, defer to pylint
5+
W503 # allow line breaks after binary ops, not after
6+
E203 # allow whitespace before ':' (https://github.com/psf/black#slices)
7+
exclude =
8+
.bzr
9+
.git
10+
.hg
11+
.svn
12+
.tox
13+
CVS
14+
.venv*/
15+
venv*/
16+
target
17+
__pycache__
18+

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Code owners file.
2+
# This file controls who is tagged for review for any given pull request.
3+
4+
# For anything not explicitly taken by someone else:
5+
* @hectorhdzg @lzchen

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,6 @@ venv.bak/
102102

103103
# mypy
104104
.mypy_cache/
105+
106+
# vscode
107+
.vscode/

.isort.cfg

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[settings]
2+
include_trailing_comma=True
3+
force_grid_wrap=0
4+
use_parentheses=True
5+
line_length=79
6+
7+
; 3 stands for Vertical Hanging Indent, e.g.
8+
; from third_party import (
9+
; lib1,
10+
; lib2,
11+
; lib3,
12+
; )
13+
; docs: https://github.com/timothycrosley/isort#multi-line-output-modes
14+
multi_line_output=3
15+
skip=target
16+
known_third_party=opentelemetry

0 commit comments

Comments
 (0)