File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88dimensions_list_file = './website/utils/dimensions_list.json'
99
1010def generate_lists ():
11-
1211 print ('Generating lists...' )
1312
1413 print (f'Accessing { indicators_dir } ...' )
15- indicators = [f for f in os .listdir (indicators_dir ) if f .endswith ('.json' )]
14+ indicators = sorted ( [f for f in os .listdir (indicators_dir ) if f .endswith ('.json' )])
1615
1716 print (f'Accessing { dimensions_dir } ...' )
18- dimensions = [f for f in os .listdir (dimensions_dir ) if f .endswith ('.json' )]
17+ dimensions = sorted ( [f for f in os .listdir (dimensions_dir ) if f .endswith ('.json' )])
1918
2019 print (f'Checking { indicators_list_file } ...' )
2120 if os .path .exists (indicators_list_file ):
Original file line number Diff line number Diff line change 11[
2- " functional_suitability.json" ,
3- " sustainability.json" ,
4- " safety.json" ,
5- " fairness.json" ,
6- " performance_efficiency.json" ,
7- " reliability.json" ,
82 " compatibility.json" ,
9- " maintainability .json" ,
3+ " fairness .json" ,
104 " flexibility.json" ,
5+ " functional_suitability.json" ,
116 " interaction_capability.json" ,
12- " security.json"
7+ " maintainability.json" ,
8+ " performance_efficiency.json" ,
9+ " reliability.json" ,
10+ " safety.json" ,
11+ " security.json" ,
12+ " sustainability.json"
1313]
Original file line number Diff line number Diff line change 11[
2- " no_critical_vulnerability.json" ,
3- " no_leaked_credential.json" ,
42 " codemeta_completeness.json" ,
5- " dependency_management.json"
3+ " dependency_management.json" ,
4+ " no_critical_vulnerability.json" ,
5+ " no_leaked_credential.json"
66]
You can’t perform that action at this time.
0 commit comments