File tree Expand file tree Collapse file tree 1 file changed +28
-3
lines changed Expand file tree Collapse file tree 1 file changed +28
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Table of Contents
4
4
5
- - [ Code Style] ( #code-style )
6
- - [ Formatting with prettier] ( #formatting-with-prettier )
7
- - [ Quoting Strings] ( #quoting-strings )
5
+ <!-- TOC -->
6
+
7
+ - [ Developing CSAF Validator Lib] ( #developing-csaf-validator-lib )
8
+ - [ Table of Contents] ( #table-of-contents )
9
+ - [ Code Style] ( #code-style )
10
+ - [ Formatting with prettier] ( #formatting-with-prettier )
11
+ - [ Quoting Strings] ( #quoting-strings )
12
+ - [ Generated Files] ( #generated-files )
13
+ - [ License Information] ( #license-information )
14
+ - [ CWE] ( #cwe )
15
+
16
+ <!-- /TOC -->
8
17
9
18
## Code Style
10
19
@@ -49,3 +58,19 @@ message:
49
58
'the ssvc id does neither match the "cve" nor it '+
50
59
'matches the "text" of any item in the "ids" array',
51
60
```
61
+
62
+ ## Generated Files
63
+
64
+ Certain tests need to process data from different sources. This data is usually downloaded from a URL. To avoid
65
+ accessing external sources during testing and to improve performance, this data is pre-processed and the result is
66
+ saved.
67
+
68
+ ### License Information
69
+
70
+ The script ` scripts/read-spdx-and-aboutcode-licenses.js ` reads the SPDX and ScanCode License DB and writes them to
71
+ the file ` lib/license/license_information.js ` . See the comments in the script for further usage information.
72
+
73
+ ### CWE
74
+
75
+ The script ` scripts/cwe-importCatalogue.js ` reads CWE catalogues and writes them to the file ` lib/cwec.js ` . See the
76
+ comments in the script for further usage information.
You can’t perform that action at this time.
0 commit comments