Ver código fonte

vs code add yapf and flake8 for lint and format

simon 1 ano atrás
pai
commit
762c285553
2 arquivos alterados com 4198 adições e 0 exclusões
  1. 4190 0
      .vscode/PythonImportHelper-v2-Completion.json
  2. 8 0
      .vscode/settings.json

Diferenças do arquivo suprimidas por serem muito extensas
+ 4190 - 0
.vscode/PythonImportHelper-v2-Completion.json


+ 8 - 0
.vscode/settings.json

@@ -0,0 +1,8 @@
+{
+    "python.linting.flake8Enabled": true,
+    "python.formatting.provider": "yapf",
+    "python.linting.flake8Args": [
+        "--max-line-length=248"
+    ],
+    "python.linting.pylintEnabled": false,
+}