We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3174968 commit d4568b6Copy full SHA for d4568b6
3 files changed
.circleci/config.yml
@@ -57,7 +57,7 @@ jobs:
57
command: docker run app:build test
58
- run:
59
name: Lint Code
60
- command: docker run app:build flake8 python-application/python_application pyton-application/tests --max-line-length 100
+ command: docker run app:build flake8 python-application
61
62
deploy:
63
docker:
.flake8
@@ -0,0 +1,3 @@
1
+[flake8]
2
+max-line-length = 100
3
+exclude = venv/*
Makefile
@@ -24,7 +24,7 @@ clean-pyc:
24
find . -name '*~' -exec rm -f {} +
25
26
lint:
27
- flake8 --max-line-length 100
+ flake8 .
28
29
test:
30
docker-compose run app test
0 commit comments