We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20c0a67 commit 740c9d3Copy full SHA for 740c9d3
.flake8
@@ -0,0 +1,3 @@
1
+[flake8]
2
+max-line-length = 120
3
+exclude=.venv
README.md
@@ -7,6 +7,21 @@ Link para o curso [Python Pro](https://www.python.pro.br/)
7
8
Suportada versão 3 de Python
9
10
+Para instalar:
11
+
12
+```console
13
+python3 -m venv .venv
14
+source .venv/bin/activate
15
+pip install -r requirements-dev.txt
16
+```
17
18
+Para conferir qualidade de código:
19
20
21
+flake8
22
23
24
25
Tópicos a serem abordados:
26
1. Git
27
2. Virtualenv
requirements-dev.txt
@@ -0,0 +1,5 @@
+flake8==3.5.0
+mccabe==0.6.1
+pycodestyle==2.3.1
4
+pyflakes==1.6.0
5
+-r requirements.txt
0 commit comments