-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
57 lines (57 loc) · 1.8 KB
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "captcha-solver",
"dockerComposeFile": ".docker/docker-compose.yml",
"service": "captcha_solver",
"workspaceFolder": "/home/volume",
"extensions": [
"aaron-bond.better-comments",
"davidanson.vscode-markdownlint",
"eamodio.gitlens",
"GrapeCity.gc-excelviewer",
"gruntfuggly.todo-tree",
"irongeek.vscode-env",
"mikestead.dotenv",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-toolsai.jupyter",
"ms-vscode.live-server",
"threadheap.serverless-ide-vscode",
"yzhang.markdown-all-in-one"
],
"settings": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.formatOnSave": true,
"python.formatting.yapfPath": "/usr/local/bin/yapf",
"python.formatting.yapfArgs": [
"--style",
"{based_on_style: pep8, force_multiline_dict: true, indent_dictionary_value: true, column_limit: 80}"
],
"python.formatting.provider": "yapf",
"python.linting.enabled": true,
"python.linting.pylintArgs": [
"--enable=W0611",
"--disable=C0111,C0330,C0411,W0703"
],
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "/usr/bin/pylint3",
"python.pythonPath": "/usr/bin/python3",
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"serverlessIDE.cfnLint.path": "/usr/local/bin/cfn-lint",
"serverlessIDE.cfnLint.appendRules": [
"cfn_lint_serverless.rules"
],
"serverlessIDE.completion": true,
"serverlessIDE.hover": true,
"serverlessIDE.telemetry.enableTelemetry": false,
"serverlessIDE.validate": true,
"serverlessIDE.validationProvider": "cfn-lint",
"todo-tree.highlights.useColourScheme": true
},
"postCreateCommand": "chmod +x .docker/entrypoint.sh && .docker/entrypoint.sh"
}