forked from EOSC-synergy/sqaaas-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tooling.json
173 lines (173 loc) · 6.52 KB
/
tooling.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"tools": {
"dockerfile": {
"hadolint": {
"docs": "https://github.com/hadolint/hadolint",
"docker": {
"image": "hadolint/hadolint:latest-alpine",
"reviewed": "2021-06-21"
},
"args": [{
"type": "optional", "description": "Ignore rules (see https://github.com/hadolint/hadolint#rules)", "value": "--ignore", "format": "string", "selectable": true, "repeatable": true
}]
}
},
"java": {
"checkstyle": {
"docs": "https://github.com/checkstyle/checkstyle",
"docker": {
"image": "davrodgon/checkstyle",
"reviewed": "1970-01-01"
}
}
},
"json": {
"jsonlint": {
"docs": "https://github.com/zaach/jsonlint",
"docker": {
"image": "cytopia/jsonlint",
"reviewed": "1970-01-01"
}
}
},
"python": {
"bandit": {
"docs": "https://bandit.readthedocs.io/",
"docker": {
"image": "secfigo/bandit",
"reviewed": "1970-01-01"
}
},
"pycodestyle": {
"docs": "https://pycodestyle.pycqa.org/",
"docker": {
"image": "cytopia/pycodestyle",
"reviewed": "1970-01-01"
}
},
"tox": {
"jepl_support": true,
"docs": "https://tox.readthedocs.io/",
"docker": {
"image": "painless/tox",
"reviewed": "1970-01-01"
}
}
},
"license": {
"licensee": {
"docs": "https://github.com/licensee/licensee",
"docker": {
"dockerfile": "QC.Lic/licensee/Dockerfile",
"reviewed": "2021-06-28"
},
"args": [{
"type": "subcommand", "description": "Detect the license of the given project", "value": "detect", "selectable": false, "args": [{
"type": "positional", "description": "Path to project's license", "value": ".", "selectable": false
}]
}]
},
"checkLicense": {
"docs": "https://github.com/EOSC-synergy/sqa-composer-templates/tree/main/QC.Lic",
"docker": {
"dockerfile": "Qc.Lic/Dockerfile",
"composer_file": "QC.Lic/docker-compose.yml",
"reviewed": "1970-01-01"
}
}
},
"codemeta": {
"checkCitable": {
"docs": "https://github.com/EOSC-synergy/sqa-composer-templates/tree/main/QC.Acc",
"docker": {
"dockerfile": "Qc.Acc/Dockerfile",
"composer_file": "QC.Acc/docker-compose.yml",
"reviewed": "1970-01-01"
}
}
},
"default": {
"commands": {
"docs": "https://indigo-dc.github.io/jenkins-pipeline-library/2.0.0/user/config_file.html#commands",
"docker": {
"dockerfile": "alpine:latest",
"reviewed": "1970-01-01"
}
}
}
},
"criteria": {
"QC.Sty": {
"description": {
"msg": "Use code style standards to guide your code writing so you let others understand it",
"improves": "readability, reusability",
"docs": "https://indigo-dc.github.io/sqa-baseline/#code-style-qc.sty"
},
"tools": {
"dockerfile": ["hadolint"],
"json": ["jsonlint"],
"python": ["tox", "pycodestyle"]
}
},
"QC.Uni": {
"description": {
"msg": "Test the behaviour of segments or units within your code (e.g. conditionals, loops, functions)",
"improves": "code design, early bug detection",
"docs": "https://indigo-dc.github.io/sqa-baseline/#unit-testing-qc.uni"
},
"tools": {
"python": ["tox"]
}
},
"QC.Fun": {
"description": {
"msg": "Ensure compliance with the functional requirements to meet your users’ expectations",
"improves": "end-user satisfaction, usability",
"docs": "https://indigo-dc.github.io/sqa-baseline/#functional-testing-qc.fun"
},
"tools": {
"python": ["tox"]
}
},
"QC.Sec": {
"description": {
"msg": "Secure your software by finding (statically) common issues associated to the programming language in use and look for disclosed security vulnerabilities",
"improves": "security issues detection",
"docs": "https://indigo-dc.github.io/sqa-baseline/#security-qc.sec"
},
"tools": {
"python": ["tox", "bandit"]
}
},
"QC.Doc": {
"description": {
"msg": "Treat documentation as code by using markup languages to automatically build and place it in online repositories",
"improves": "outreach capacity, documentation maintenance",
"docs": "https://indigo-dc.github.io/sqa-baseline/#documentation-qc.doc"
},
"tools": {
"python": ["tox"]
}
},
"QC.Acc": {
"description": {
"msg": "Source code and documentation publicly available in online repositories",
"improves": "reusability, reproducibility",
"docs": "https://indigo-dc.github.io/sqa-baseline/#code-accessibility-qc.acc"
},
"tools": {
"codemeta": ["checkCitable"]
}
},
"QC.Lic": {
"description": {
"msg": "Usage of an open license to distribute your code",
"improves": "external contributions, reusability",
"docs": "https://indigo-dc.github.io/sqa-baseline/#licensing-qc.lic"
},
"tools": {
"license": ["licensee"]
}
}
}
}