Skip to content

Commit cc51914

Browse files
authored
Merge branch 'dev' into dev
2 parents e398554 + 721e29d commit cc51914

File tree

865 files changed

+937762
-394312
lines changed

Some content is hidden

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

865 files changed

+937762
-394312
lines changed

.flake8

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22
max-line-length = 120
33
max-complexity = 10
44
ignore =
5-
E501, # line too long, it is covered by pylint
6-
E722, # bare except, bad practice, to be removed in the future
7-
F401, # imported but unused, too many violations, to be removed in the future
8-
F811, # redefinition of unused, to be removed in the future
9-
C901 # code flow is too complex, too many violations, to be removed in the future
10-
W504 # line break after binary operator effect on readability is subjective
5+
# line too long, it is covered by pylint
6+
E501
7+
# bare except, bad practice, to be removed in the future
8+
E722
9+
# imported but unused, too many violations, to be removed in the future
10+
F401
11+
# redefinition of unused, to be removed in the future
12+
F811
13+
# code flow is too complex, too many violations, to be removed in the future
14+
C901
15+
# line break after binary operator effect on readability is subjective
16+
W504
1117
per-file-ignores =
1218
# module level import not at top of file, elevate timer to measure import time
1319
src/azure-cli/azure/cli/__main__.py:E402

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
/src/azure-cli/azure/cli/command_modules/resource/ @zhoxing-ms @jsntcy @yanzhudd
5757
/src/azure-cli/azure/cli/command_modules/role/ @jiasli @evelyn-ys @calvinhzy
5858
/src/azure-cli/azure/cli/command_modules/search/ @huangbolun @kairu-ms
59-
/src/azure-cli/azure/cli/command_modules/servicebus/ @v-ajnava @zhoxing-ms @jsntcy
59+
/src/azure-cli/azure/cli/command_modules/servicebus/ @v-ajnava @zhoxing-ms @jsntcy @evelyn-ys
6060
/src/azure-cli/azure/cli/command_modules/serviceconnector/ @yungezz @houk-ms @xfz11 @yanzhudd @kairu-ms
6161
/src/azure-cli/azure/cli/command_modules/servicefabric/ @QingChenmsft @zhoxing-ms @jsntcy @yanzhudd
6262
/src/azure-cli/azure/cli/command_modules/sql/ @jaredmoo @evelyn-ys @calvinhzy

0 commit comments

Comments
 (0)