Skip to content

Commit 6d7cb36

Browse files
committed
Update linting make command and upgrade dependencies
1 parent f8fd9bc commit 6d7cb36

3 files changed

Lines changed: 80 additions & 75 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ docker: ## Build and publish Docker images.
3131
@docker tag cloudendure mbeacom/cloudendure-python
3232
@docker push
3333

34-
lint: ## Lint the CloudEndure project with Black.
34+
lint: isort ## Lint the CloudEndure project with Black.
3535
@pipenv run black --target-version py37 --exclude "/(\.eggs|\.git|\.hg|\.mypy_cache|\.nox|\.tox|\.venv|_build|buck-out|build|dist|tests|cloudendure_api)/" .
3636

3737
update_prereqs: ## Update the local development pre-requisite packages.

Pipfile.lock

Lines changed: 76 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,12 @@ line_length = 120
6060
multi_line_output = 5
6161
include_trailing_comma = True
6262
known_future_library = future
63-
known_third_party = boto3,botocore,pytest,requests,urllib3,six,yaml
64-
known_first_party = cloudendure,cloudendure_api,api,models
63+
known_third_party = boto3,botocore,fire,pytest,requests,urllib3,six,yaml
64+
known_first_party = cloudendure_api,api,cloudendure,config,events,exceptions,models,templates,utils
6565
default_section = THIRDPARTY
6666
indent = ' '
6767
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
68+
skip=cloudendure/cloudendure_api
6869

6970
[yapf]
7071
based_on_style = pep8

0 commit comments

Comments
 (0)