-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
62 lines (62 loc) · 1.61 KB
/
devcontainer-feature.json
File metadata and controls
62 lines (62 loc) · 1.61 KB
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
58
59
60
61
62
{
"id": "pycqa",
"version": "2.0.0",
"name": "PyCQA tools bundle (via pipx)",
"documentationURL": "http://github.com/hspaans/devcontainer-features/tree/master/src/pycqa",
"licenseURL": "http://github.com/hspaans/devcontainer-features/tree/master/LICENSE",
"description": "Python Code Quality Authority tools.",
"options": {
"doc8_version": {
"default": "latest",
"description": "Select the version of doc8 to install.",
"proposals": [
"latest"
],
"type": "string"
},
"docformatter_version": {
"default": "latest",
"description": "Select the version of docformatter to install.",
"proposals": [
"latest"
],
"type": "string"
},
"eradicate_version": {
"default": "latest",
"description": "Select the version of eradicate to install.",
"proposals": [
"latest"
],
"type": "string"
},
"isort_version": {
"default": "latest",
"description": "Select the version of isort to install.",
"proposals": [
"latest"
],
"type": "string"
},
"pydocstyle_version": {
"default": "latest",
"description": "Select the version of pydocstyle to install.",
"proposals": [
"latest"
],
"type": "string"
},
"pyflakes_version": {
"default": "latest",
"description": "Select the version of pyflakes to install.",
"proposals": [
"latest"
],
"type": "string"
}
},
"installsAfter": [
"ghcr.io/devcontainers-extra/features/pipx-package",
"ghcr.io/devcontainers/features/python"
]
}