-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a21cb0
commit cbeffdd
Showing
60 changed files
with
439 additions
and
277 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,9 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
max-complexity = 10 | ||
ignore = | ||
E126, | ||
E501, | ||
F401, | ||
F811, | ||
C901 |
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,21 @@ | ||
[MESSAGES CONTROL] | ||
# For all codes, run 'pylint --list-msgs' or go to 'http://pylint-messages.wikidot.com/all-codes' | ||
# C0103 Invalid %s name "%s" | ||
# I0011 Warning locally suppressed using disable-msg | ||
disable=C0103,I0011,fixme,missing-docstring,too-many-arguments,too-few-public-methods,cyclic-import,useless-object-inheritance,useless-import-alias | ||
|
||
# note: This is useful but some pylint suppressions only apply to Python 2 or 3 | ||
# and we run pylint on both Python 2 and 3. e.g. You may see some no-member useless-suppression messages. | ||
enable=useless-suppression | ||
|
||
[FORMAT] | ||
max-line-length=120 | ||
|
||
[DESIGN] | ||
# Maximum number of locals for function / method body | ||
max-locals=25 | ||
# Maximum number of branch for function / method body | ||
max-branches=20 | ||
|
||
[SIMILARITIES] | ||
min-similarity-lines=10 |
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,21 @@ | ||
Metadata-Version: 1.2 | ||
Name: azdev | ||
Version: 0.0.1 | ||
Summary: Azure Developer Tools command line | ||
Home-page: https://github.com/Azure/azure-cli-dev-tools | ||
Author: Microsoft Corporation | ||
Author-email: [email protected] | ||
License: MIT | ||
Description: UNKNOWN | ||
Keywords: azure | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Topic :: Software Development :: Build Tools | ||
Classifier: Environment :: Console | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Natural Language :: English | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Requires-Python: >=2.7,!=3.4,!=3.3,!=3.2,!=3.1,!=3.0,<=3.8 |
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,40 @@ | ||
README.md | ||
setup.cfg | ||
setup.py | ||
azdev/__init__.py | ||
azdev/commands.py | ||
azdev/completer.py | ||
azdev/help.py | ||
azdev/params.py | ||
azdev.egg-info/PKG-INFO | ||
azdev.egg-info/SOURCES.txt | ||
azdev.egg-info/dependency_links.txt | ||
azdev.egg-info/entry_points.txt | ||
azdev.egg-info/requires.txt | ||
azdev.egg-info/top_level.txt | ||
azdev/config/__init__.py | ||
azdev/operations/__init__.py | ||
azdev/operations/help.py | ||
azdev/operations/legal.py | ||
azdev/operations/performance.py | ||
azdev/operations/pypi.py | ||
azdev/operations/python_sdk.py | ||
azdev/operations/resource.py | ||
azdev/operations/setup.py | ||
azdev/operations/style.py | ||
azdev/operations/extensions/__init__.py | ||
azdev/operations/extensions/util.py | ||
azdev/operations/linter/__init__.py | ||
azdev/operations/linter/linter.py | ||
azdev/operations/linter/rule_decorators.py | ||
azdev/operations/linter/util.py | ||
azdev/operations/tests/__init__.py | ||
azdev/operations/tests/pytest_runner.py | ||
azdev/utilities/__init__.py | ||
azdev/utilities/command.py | ||
azdev/utilities/config.py | ||
azdev/utilities/const.py | ||
azdev/utilities/display.py | ||
azdev/utilities/path.py | ||
azdev/utilities/pypi.py | ||
azdev/utilities/tools.py |
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 @@ | ||
|
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,3 @@ | ||
[console_scripts] | ||
azdev = azdev:launch | ||
|
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,15 @@ | ||
docutils | ||
flake8 | ||
future | ||
gitpython | ||
knack~=0.5.1 | ||
pytest | ||
pytest-xdist | ||
tox | ||
virtualenv | ||
|
||
[:python_version<'3.0'] | ||
pylint~=1.9.2 | ||
|
||
[:python_version>='3.0'] | ||
pylint~=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
azdev |
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
7 changes: 4 additions & 3 deletions
7
src/azdev/operations/extensions/util.py → azdev/operations/extensions/util.py
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
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
Oops, something went wrong.