소스 검색

vs code add yapf and flake8 for lint and format

simon 1 년 전
부모
커밋
762c285553
2개의 변경된 파일4198개의 추가작업 그리고 0개의 파일을 삭제
  1. 4190 0
      .vscode/PythonImportHelper-v2-Completion.json
  2. 8 0
      .vscode/settings.json

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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,
+}