aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/mocks/definitions-list.ts
blob: 354aa3925f515721443b37197674726f23523583 (plain)
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
/*
 * SonarQube
 * Copyright (C) 2009-2023 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
import { ExtendedSettingDefinition, SettingType } from '../../types/settings';

export const definitions: ExtendedSettingDefinition[] = [
  {
    key: 'sonar.abap.file.suffixes',
    name: 'File suffixes',
    description: 'List of suffixes for files to analyze. To not filter, leave the list empty.',
    category: 'ABAP',
    subCategory: 'General',
    defaultValue: '.abap,.ab4,.flow,.asprog',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.apex.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'Apex',
    subCategory: 'General',
    defaultValue: '.cls,.trigger',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.apex.coverage.reportPath',
    name: 'Path to coverage report',
    description:
      'Path to coverage report file (test-result-codecoverage.json) generated by Salesforce CLI test command for Apex. The path may be absolute or relative to the project base directory.',
    category: 'Apex',
    subCategory: 'Test and Coverage',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.gitlab.enabled',
    name: 'Enabled',
    description:
      'Enable Gitlab users to login. Value is ignored if URL, Application ID, and Secret are not set.',
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'gitlab',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.enabled',
    name: 'Enabled',
    description:
      'Enable SAML users to login. Value is ignored if provider ID, login url, certificate, login, name attributes are not defined.',
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'saml',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.enabled',
    name: 'Enabled',
    description:
      'Enable GitHub users to login. Value is ignored if client ID and secret are not defined.',
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'github',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.bitbucket.enabled',
    name: 'Enabled',
    description:
      'Enable Bitbucket users to login. Value is ignored if consumer key and secret are not defined.',
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'bitbucket',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.applicationId',
    name: 'Application ID',
    description: 'The identifier used on the Identity Provider for registering SonarQube.',
    category: 'authentication',
    subCategory: 'saml',
    defaultValue: 'sonarqube',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.clientId.secured',
    name: 'Client ID',
    description: 'Client ID provided by GitHub when registering the application.',
    category: 'authentication',
    subCategory: 'github',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.gitlab.url',
    name: 'GitLab URL',
    description: 'URL to access GitLab.',
    category: 'authentication',
    subCategory: 'gitlab',
    defaultValue: 'https://gitlab.com',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.bitbucket.clientId.secured',
    name: 'OAuth consumer key',
    description: 'Consumer key provided by Bitbucket when registering the consumer.',
    category: 'authentication',
    subCategory: 'bitbucket',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.gitlab.applicationId.secured',
    name: 'Application ID',
    description: 'Application ID provided by GitLab when registering the application.',
    category: 'authentication',
    subCategory: 'gitlab',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.clientSecret.secured',
    name: 'Client Secret',
    description: 'Client password provided by GitHub when registering the application.',
    type: SettingType.PASSWORD,
    category: 'authentication',
    subCategory: 'github',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.bitbucket.clientSecret.secured',
    name: 'OAuth consumer secret',
    description: 'Consumer secret provided by Bitbucket when registering the consumer.',
    category: 'authentication',
    subCategory: 'bitbucket',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.providerName',
    name: 'Provider Name',
    description:
      'Name of the Identity Provider displayed in the login page when SAML authentication is active.',
    category: 'authentication',
    subCategory: 'saml',
    defaultValue: 'SAML',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.bitbucket.allowUsersToSignUp',
    name: 'Allow users to sign up',
    description:
      "Allow new users to authenticate. When set to 'false', only existing users will be able to authenticate.",
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'bitbucket',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.allowUsersToSignUp',
    name: 'Allow users to sign up',
    description:
      "Allow new users to authenticate. When set to 'false', only existing users will be able to authenticate to the server.",
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'github',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.providerId',
    name: 'Provider ID',
    description:
      'Identifier of the Identity Provider, the entity that provides SAML authentication.',
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.gitlab.secret.secured',
    name: 'Secret',
    description: 'Secret provided by GitLab when registering the application.',
    type: SettingType.PASSWORD,
    category: 'authentication',
    subCategory: 'gitlab',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.gitlab.allowUsersToSignUp',
    name: 'Allow users to sign up',
    description:
      "Allow new users to authenticate. When set to 'false', only existing users will be able to authenticate to the server.",
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'gitlab',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.loginUrl',
    name: 'SAML login url',
    description: 'The URL where the Identity Provider expects to receive SAML requests.',
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.bitbucket.workspaces',
    name: 'Workspaces',
    description:
      'Only members of at least one of these workspace will be able to authenticate. Keep empty to disable workspace restriction. You can use either the workspace name, or the workspace slug (ex: https://bitbucket.org/{workspace-slug}).',
    category: 'authentication',
    subCategory: 'bitbucket',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.certificate.secured',
    name: 'Identity provider certificate',
    description:
      'The public X.509 certificate used by the Identity Provider to authenticate SAML messages.',
    type: SettingType.PASSWORD,
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.groupsSync',
    name: 'Synchronize teams as groups',
    description:
      "For each team they belong to, the user will be associated to a group named 'Organization/Team' (if it exists) in SonarQube.",
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'github',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.gitlab.groupsSync',
    name: 'Synchronize user groups',
    description:
      'For each GitLab group they belong to, the user will be associated to a group with the same name (if it exists) in SonarQube. If enabled, the GitLab Oauth2 application will need to provide the api scope.',
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'gitlab',
    defaultValue: 'false',
    options: [],
    fields: [],
    deprecatedKey: 'sonar.auth.gitlab.sync_user_groups',
  },
  {
    key: 'sonar.auth.saml.user.login',
    name: 'SAML user login attribute',
    description:
      'The name of the attribute where the SAML Identity Provider will put the login of the authenticated user.',
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.apiUrl',
    name: 'The API url for a GitHub instance.',
    description:
      'The API url for a GitHub instance. https://api.github.com/ for Github.com, https://github.company.com/api/v3/ when using Github Enterprise',
    category: 'authentication',
    subCategory: 'github',
    defaultValue: 'https://api.github.com/',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.user.name',
    name: 'SAML user name attribute',
    description:
      'The name of the attribute where the SAML Identity Provider will put the name of the authenticated user.',
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.webUrl',
    name: 'The WEB url for a GitHub instance.',
    description:
      'The WEB url for a GitHub instance. https://github.com/ for Github.com, https://github.company.com/ when using GitHub Enterprise.',
    category: 'authentication',
    subCategory: 'github',
    defaultValue: 'https://github.com/',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.github.organizations',
    name: 'Organizations',
    description:
      'Only members of these organizations will be able to authenticate to the server. ⚠︎ if not set, users from any organization where the GitHub App is installed will be able to login to this SonarQube instance.',
    category: 'authentication',
    subCategory: 'github',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.user.email',
    name: 'SAML user email attribute',
    description:
      'The name of the attribute where the SAML Identity Provider will put the email of the authenticated user.',
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.group.name',
    name: 'SAML group attribute',
    description:
      'Attribute defining the user groups in SAML. Users are associated to the default group only if no attribute is defined.',
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.signature.enabled',
    name: 'Sign requests',
    description:
      'Enables signature of SAML requests. It requires both service provider private key and certificate to be set.',
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'saml',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.sp.privateKey.secured',
    name: 'Service provider private key',
    description:
      'PKCS8 stored private key used for signing the requests and decrypting responses from the identity provider. ',
    type: SettingType.PASSWORD,
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.saml.sp.certificate.secured',
    name: 'Service provider certificate',
    description: 'X.509 certificate for the service provider, used for signing the requests.',
    type: SettingType.PASSWORD,
    category: 'authentication',
    subCategory: 'saml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cfamily.bullseye.reportPath',
    name: 'Bullseye XML report',
    description:
      'Path to the Bullseye XML Coverage Report. The path may be either absolute or relative to the project base directory.',
    category: 'C / C++ / Objective-C',
    subCategory: '  Coverage',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.c.file.suffixes',
    name: 'C file suffixes',
    description: 'List of suffixes of C files to analyze.',
    category: 'C / C++ / Objective-C',
    subCategory: '   C and C++',
    defaultValue: '.c,.h',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cpp.file.suffixes',
    name: 'C++ file suffixes',
    description: 'List of suffixes of C++ files to analyze.',
    category: 'C / C++ / Objective-C',
    subCategory: '   C and C++',
    defaultValue: '.cc,.cpp,.cxx,.c++,.hh,.hpp,.hxx,.h++,.ipp',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cfamily.cppunit.reportsPath',
    name: 'CppUnit reports',
    description:
      'Path to the directory containing the *.xml CppUnit report files. The path may be either absolute or relative to the project base directory.',
    category: 'C / C++ / Objective-C',
    subCategory: '  Tests',
    options: [],
    fields: [],
    deprecatedKey: 'sonar.cpp.cppunit.reportsPath',
  },
  {
    key: 'sonar.cfamily.gcov.reportsPath',
    name: 'Gcov reports',
    description:
      'Path to the directory containing the *.gcov Gcov report files. The path may be either absolute or relative to the project base directory.',
    category: 'C / C++ / Objective-C',
    subCategory: '  Coverage',
    options: [],
    fields: [],
    deprecatedKey: 'sonar.cpp.gcov.reportsPath',
  },
  {
    key: 'sonar.cfamily.ignoreHeaderComments',
    name: 'Ignore header comments',
    description:
      'If set to "true", the file headers (that are usually the same on each file: licensing information for example) are not considered as comments. Thus metrics such as "Comment lines" do not get incremented. If set to "false", those file headers are considered as comments and metrics such as "Comment lines" get incremented.',
    type: SettingType.BOOLEAN,
    category: 'C / C++ / Objective-C',
    subCategory: ' Miscellaneous',
    defaultValue: 'true',
    options: [],
    fields: [],
    deprecatedKey: 'sonar.cpp.ignoreHeaderComments',
  },
  {
    key: 'sonar.cfamily.llvm-cov.reportPath',
    name: 'llvm-cov report',
    description:
      'Path to the Coverage Report generated by "llvm-cov show". The path may be either absolute or relative to the project base directory.',
    category: 'C / C++ / Objective-C',
    subCategory: '  Coverage',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.objc.file.suffixes',
    name: 'Objective-C file suffixes',
    description: 'List of suffixes of Objective-C files to analyze.',
    category: 'C / C++ / Objective-C',
    subCategory: '   Objective-C',
    defaultValue: '.m',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cfamily.vscoveragexml.reportsPath',
    name: 'Visual Studio XML reports',
    description:
      'Pattern for search for Visual Studio Coverage XML reports. The pattern may be either absolute or relative to the project base directory. For example: "**/*.coveragexml" will find all "*.coveragexml" files in all sub-directories of current project.',
    category: 'C / C++ / Objective-C',
    subCategory: '  Coverage',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cs.analyzeGeneratedCode',
    name: 'Analyze generated code',
    description:
      'If set to "true", the files containing generated code are analyzed. If set to "false", the files containing generated code are ignored.',
    type: SettingType.BOOLEAN,
    category: 'C#',
    subCategory: 'C#',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cs.file.suffixes',
    name: 'File suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'C#',
    subCategory: 'C#',
    defaultValue: '.cs',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cs.ignoreHeaderComments',
    name: 'Ignore header comments',
    description:
      'If set to "true", the file headers (that are usually the same on each file: licensing information for example) are not considered as comments. Thus metrics such as "Comment lines" do not get incremented. If set to "false", those file headers are considered as comments and metrics such as "Comment lines" get incremented.',
    type: SettingType.BOOLEAN,
    category: 'C#',
    subCategory: 'C#',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cloudformation.activate',
    name: 'Activate CloudFormation analysis',
    description: 'Activate analysis of JSON and Yaml files recognized as CloudFormation files.',
    type: SettingType.BOOLEAN,
    category: 'CloudFormation',
    subCategory: 'General',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cloudformation.file.identifier',
    name: 'File Identifier',
    description:
      'Files without the identifier are excluded from the analysis. The identifier can be anywhere in the file.',
    category: 'CloudFormation',
    subCategory: 'General',
    defaultValue: 'AWSTemplateFormatVersion',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.aucobol.preprocessor.directives.default',
    name: 'AcuCobol preprocessor default directives',
    description:
      'This property allows to set preprocessor directives used to compile every COBOL program. See the \'ACUCOBOL-GT Source Code Control directives\' section in the <a target="_blank" href="http://docs.sonarsource.com/sonarqube/display/PLUG/COBOL+Plugin+Advanced+Configuration">documentation of the plugin</a>.',
    category: 'COBOL',
    subCategory: 'Preprocessor',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.adaprep.activation',
    name: 'ADAPREP preprocessor activation',
    description:
      'ADAPREP is a COBOL preprocessor which provides the programmer with the full ADABAS (See Software AG) capability. Activating this property is mandatory if the COBOL source code might contain some ADAPREP directives.',
    type: SettingType.BOOLEAN,
    category: 'COBOL',
    subCategory: 'Preprocessor',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.copy.suffixes',
    name: 'Copy suffixes',
    description:
      "Comma-separated list of suffixes for copybook to analyze, ex: 'cpy, cbl'. To not filter, leave the list empty.",
    category: 'COBOL',
    subCategory: 'Preprocessor',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.copy.directories',
    name: 'Copybook directories',
    description:
      'Comma-separated list of all directories containing some copybooks required to analyze the COBOL programs. Both relative and absolute paths can be used.',
    category: 'COBOL',
    subCategory: 'Preprocessor',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.copy.exclusions',
    name: 'Copybooks to exclude',
    description:
      'Comma-separated list of copybooks exclusion patterns. If one copybook name matches one exclusion pattern, no violation will be reported on this copybook. The exclusion pattern must be a case-insensitive regular expression and should not include the copybook suffix.<p>For instance "one\\d*,TWO." will exclude violations reported on one23.cpy, ONE111.cpy, TWOX, and TWO2.cpy copybooks.</p>',
    category: 'COBOL',
    subCategory: 'Preprocessor',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.byteBasedColumnCount',
    name: 'Count columns based on bytes',
    description:
      'This property should be set to true if source columns have to be counted based on bytes rather than characters. That may be useful for projects using double-byte character set.',
    type: SettingType.BOOLEAN,
    category: 'COBOL',
    subCategory: 'COBOL',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.preprocessor.skipping.first.matching.characters',
    name: 'Custom skipping preprocessor first matching characters',
    description:
      "<p>To support a maximum number of legacy COBOL preprocessors, this property allows to define which lines of code should be considered as a preprocessing line and so should be ignored when analyzing the COBOL source code.</p><p>For example, if this property is set to '%', all lines starting with a '%' character, and whatever is the position of this first character in the line, won't be analyzed. If this property is set to '%?', all lines starting with a '%' or a '?' will be ignored.</p>",
    category: 'COBOL',
    subCategory: 'Preprocessor',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.db2include.directories',
    name: 'DB2 Include directories',
    description:
      'Comma-separated list of all directories (either relative or absolute paths) containing some copybooks required to analyze the COBOL programs. This property is used when interpreting the DB2 INCLUDE preprocessing directive (EXEC SQL INCLUDE ... END-EXEC) to locate the copybook files. When this property is not set, the property "sonar.cobol.copy.directories" is used instead.',
    category: 'COBOL',
    subCategory: 'SQL/CICS',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.dialect',
    name: 'Dialect',
    description: 'The COBOL dialect to be used for the analysis.',
    type: SettingType.SINGLE_SELECT_LIST,
    category: 'COBOL',
    subCategory: 'COBOL',
    defaultValue: 'ibm-enterprise-cobol',
    options: [
      'bull-gcos-cobol',
      'hp-tandem-cobol',
      'ibm-os/vs-cobol',
      'ibm-ile-cobol',
      'ibm-cobol/ii',
      'ibm-cobol/400',
      'ibm-enterprise-cobol',
      'microfocus-cobol',
      'microfocus-acucobol-gt-cobol',
      'opencobol/cobol-it',
    ],
    fields: [],
  },
  {
    key: 'sonar.cobol.exec.recoveryMode',
    name: 'Exec SQL/CICS Recovery mode',
    description:
      'This option must be activated when the COBOL parser is unable to parse a specific SQL dialect like Pro*Cobol for instance.',
    type: SettingType.BOOLEAN,
    category: 'COBOL',
    subCategory: 'SQL/CICS',
    defaultValue: 'true',
    options: [],
    fields: [],
    deprecatedKey: 'sonar.cobol.sql.recoveryMode',
  },
  {
    key: 'sonar.cobol.file.suffixes',
    name: 'File suffixes',
    description:
      'Comma-separated list of suffixes for files to analyze. To not filter, leave the list empty.',
    category: 'COBOL',
    subCategory: 'COBOL',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cpd.cobol.ignoreLiteral',
    name: 'Ignore literals',
    description:
      "If true, CPD ignores literal value differences when evaluating a duplicated block. This means that 'my first text'; and 'my second text' will be seen as equivalent.",
    type: SettingType.BOOLEAN,
    category: 'COBOL',
    subCategory: 'Duplications',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.compilationConstants',
    name: 'Microfocus Compilation Constants',
    description:
      'If your code takes advantage of conditional compilation features provided by Microfocus, you may have to configure compiler constants for your analysis.',
    type: SettingType.PROPERTY_SET,
    category: 'COBOL',
    subCategory: 'Preprocessor',
    multiValues: true,
    options: [],
    fields: [
      {
        key: 'name',
        name: 'Compilation Constant Name',
        options: [],
      },
      {
        key: 'value',
        name: 'Compilation Constant Value',
        options: [],
      },
    ],
  },
  {
    key: 'sonar.cobol.sql.catalog.defaultSchema',
    name: 'Names of default database schemas',
    description:
      'Comma-separated list of default database schemas used in embedded SQL statements. If a table name matches more than one, the table will be resolved to the first matching schema.',
    category: 'COBOL',
    subCategory: 'SQL/CICS',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.sql.catalog.csv.path',
    name: 'Path for database catalog CSV files',
    description: 'Path of the directory containing CSV files for the database catalog.',
    category: 'COBOL',
    subCategory: 'SQL/CICS',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cobol.sourceFormat',
    name: 'Source format',
    description:
      'In fixed format, there is both a left and right margin; the indicator area is expected in column 7 and the code area ends in column 72. In variable format, there is only a left margin; the indicator area is expected in column 7. In free format, there is no margin; the indicator area is expected in column 1.',
    type: SettingType.SINGLE_SELECT_LIST,
    category: 'COBOL',
    subCategory: 'COBOL',
    defaultValue: 'fixed',
    options: ['fixed', 'variable', 'free'],
    fields: [],
  },
  {
    key: 'sonar.cobol.tab.width',
    name: 'Tab width',
    description:
      'Number of expanded spaces for a tab character (\'\t\'). This property really matters when the Source format is "fixed".',
    type: SettingType.INTEGER,
    category: 'COBOL',
    subCategory: 'COBOL',
    defaultValue: '8',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.css.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'CSS',
    subCategory: 'General',
    defaultValue: '.css,.less,.scss',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.docker.activate',
    name: 'Activate Docker Analysis',
    description:
      'Disabling Docker analysis ensures that no Docker files are parsed, highlighted and analyzed, and no IaC analysis results are included in the quality gate.',
    type: SettingType.BOOLEAN,
    category: 'Docker',
    subCategory: 'General',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.global.exclusions',
    name: 'Global Source File Exclusions',
    category: 'exclusions',
    subCategory: 'files',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.exclusions',
    name: 'Source File Exclusions',
    category: 'exclusions',
    subCategory: 'files',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.global.test.exclusions',
    name: 'Global Test File Exclusions',
    category: 'exclusions',
    subCategory: 'files',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.issue.ignore.allfile',
    name: 'Ignore Issues on Files',
    description:
      'Patterns to ignore all issues on files that contain a block of code matching a given regular expression.',
    type: SettingType.PROPERTY_SET,
    category: 'exclusions',
    subCategory: 'issues',
    options: [],
    fields: [
      {
        key: 'fileRegexp',
        name: 'Regular Expression',
        description:
          'If this regular expression is found in a file, then the whole file is ignored.',
        options: [],
      },
    ],
  },
  {
    key: 'sonar.inclusions',
    name: 'Source File Inclusions',
    category: 'exclusions',
    subCategory: 'files',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.issue.ignore.block',
    name: 'Ignore Issues in Blocks',
    description:
      'Patterns to ignore all issues on specific blocks of code, while continuing to scan and mark issues on the remainder of the file.',
    type: SettingType.PROPERTY_SET,
    category: 'exclusions',
    subCategory: 'issues',
    options: [],
    fields: [
      {
        key: 'beginBlockRegexp',
        name: 'Regular Expression for Start of Block',
        description:
          'If this regular expression is found in a file, then following lines are ignored until end of block.',
        options: [],
      },
      {
        key: 'endBlockRegexp',
        name: 'Regular Expression for End of Block',
        description:
          'If specified, this regular expression is used to determine the end of code blocks to ignore. If not, then block ends at the end of file.',
        options: [],
      },
    ],
  },
  {
    key: 'sonar.test.exclusions',
    name: 'Test File Exclusions',
    category: 'exclusions',
    subCategory: 'files',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.issue.ignore.multicriteria',
    name: 'Ignore Issues on Multiple Criteria',
    description:
      'Patterns to ignore issues on certain components and for certain coding rules.<br/>A rule key pattern consists of the rule repository name, followed by a colon, followed by a rule key or rule name fragment. For example:<ul><li>java:S1195</li><li>java:*Naming*</li></ul>',
    type: SettingType.PROPERTY_SET,
    category: 'exclusions',
    subCategory: 'issues',
    options: [],
    fields: [
      {
        key: 'ruleKey',
        name: 'Rule Key Pattern',
        description: 'Pattern to match rules which should be ignored.',
        options: [],
      },
      {
        key: 'resourceKey',
        name: 'File Path Pattern',
        description: 'Pattern to match files which should be ignored.',
        options: [],
      },
    ],
  },
  {
    key: 'sonar.test.inclusions',
    name: 'Test File Inclusions',
    category: 'exclusions',
    subCategory: 'files',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.issue.enforce.multicriteria',
    name: 'Restrict Scope of Coding Rules',
    description:
      'Patterns to restrict the application of a rule to only certain components, ignoring all others.<br/>A rule key pattern consists of the rule repository name, followed by a colon, followed by a rule key or rule name fragment. For example:<ul><li>java:S1195</li><li>java:*Naming*</li></ul>',
    type: SettingType.PROPERTY_SET,
    category: 'exclusions',
    subCategory: 'issues',
    options: [],
    fields: [
      {
        key: 'ruleKey',
        name: 'Rule Key Pattern',
        description: 'Pattern used to match rules which should be restricted.',
        options: [],
      },
      {
        key: 'resourceKey',
        name: 'File Path Pattern',
        description: 'Pattern used to match files to which the rules should be restricted.',
        options: [],
      },
    ],
  },
  {
    key: 'sonar.coverage.exclusions',
    category: 'exclusions',
    subCategory: 'coverage',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cpd.exclusions',
    name: 'Duplication Exclusions',
    description:
      'Patterns used to exclude some source files from the duplication detection mechanism. See below to know how to use wildcards to specify this property.',
    category: 'exclusions',
    subCategory: 'duplications',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vbnet.roslyn.ignoreIssues',
    name: 'Ignore issues from external Roslyn analyzers',
    description:
      "If set to 'true', issues reported by external Roslyn analyzers won't be imported.",
    type: SettingType.BOOLEAN,
    category: 'External Analyzers',
    subCategory: 'VB.NET',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cs.roslyn.ignoreIssues',
    name: 'Ignore issues from external Roslyn analyzers',
    description:
      "If set to 'true', issues reported by external Roslyn analyzers won't be imported.",
    type: SettingType.BOOLEAN,
    category: 'External Analyzers',
    subCategory: 'C#',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vbnet.roslyn.bugCategories',
    name: 'Rule categories associated with Bugs',
    description: 'External rule categories to be treated as Bugs.',
    category: 'External Analyzers',
    subCategory: 'VB.NET',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cs.roslyn.bugCategories',
    name: 'Rule categories associated with Bugs',
    description: 'External rule categories to be treated as Bugs.',
    category: 'External Analyzers',
    subCategory: 'C#',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cs.roslyn.vulnerabilityCategories',
    name: 'Rule categories associated with Vulnerabilities',
    description: 'External rule categories to be treated as Vulnerabilities.',
    category: 'External Analyzers',
    subCategory: 'C#',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vbnet.roslyn.vulnerabilityCategories',
    name: 'Rule categories associated with Vulnerabilities',
    description: 'External rule categories to be treated as Vulnerabilities.',
    category: 'External Analyzers',
    subCategory: 'VB.NET',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cs.roslyn.codeSmellCategories',
    name: 'Rule categories associated with Code Smells',
    description:
      'External rule categories to be treated as Code Smells. By default, external issues are Code Smells, or Bugs when the severity is error.',
    category: 'External Analyzers',
    subCategory: 'C#',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vbnet.roslyn.codeSmellCategories',
    name: 'Rule categories associated with Code Smells',
    description:
      'External rule categories to be treated as Code Smells. By default, external issues are Code Smells, or Bugs when the severity is error.',
    category: 'External Analyzers',
    subCategory: 'VB.NET',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cloudformation.cfn-lint.reportPaths',
    name: 'Cfn-Lint Report Files',
    description: 'Paths (absolute or relative) to the files with Cfn-Lint issues.',
    category: 'External Analyzers',
    subCategory: 'CloudFormation',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.androidLint.reportPaths',
    name: 'Android Lint Report Files',
    description: 'Paths (absolute or relative) to xml files with Android Lint issues.',
    category: 'External Analyzers',
    subCategory: 'Android',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.bandit.reportPaths',
    name: 'Bandit Report Files',
    description: 'Paths (absolute or relative) to json files with Bandit issues.',
    category: 'External Analyzers',
    subCategory: 'Python',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.java.checkstyle.reportPaths',
    name: 'Checkstyle Report Files',
    description: 'Paths (absolute or relative) to xml files with Checkstyle issues.',
    category: 'External Analyzers',
    subCategory: 'Java',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.kotlin.detekt.reportPaths',
    name: 'Detekt Report Files',
    description: 'Paths (absolute or relative) to checkstyle xml files with Detekt issues.',
    category: 'External Analyzers',
    subCategory: 'Kotlin',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.eslint.reportPaths',
    name: 'ESLint Report Files',
    description: 'Paths (absolute or relative) to the JSON files with ESLint issues.',
    category: 'External Analyzers',
    subCategory: 'JavaScript/TypeScript',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.flake8.reportPaths',
    name: 'Flake8 Report Files',
    description: 'Paths (absolute or relative) to report files with Flake8 issues.',
    category: 'External Analyzers',
    subCategory: 'Python',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.kotlin.ktlint.reportPaths',
    name: 'Ktlint Report Files',
    description: 'Paths (absolute or relative) to checkstyle xml or json files with Ktlint issues.',
    category: 'External Analyzers',
    subCategory: 'Kotlin',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.php.phpstan.reportPaths',
    name: 'PHPStan Report Files',
    description: 'Paths (absolute or relative) to report files with PHPStan issues.',
    category: 'External Analyzers',
    subCategory: 'PHP',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.apex.pmd.reportPaths',
    name: 'PMD Report Files',
    description: 'Paths (absolute or relative) to xml files with PMD issues.',
    category: 'External Analyzers',
    subCategory: 'Apex',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.java.pmd.reportPaths',
    name: 'PMD Report Files',
    description: 'Paths (absolute or relative) to xml files with PMD issues.',
    category: 'External Analyzers',
    subCategory: 'Java',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.php.psalm.reportPaths',
    name: 'Psalm Report Files',
    description: 'Paths (absolute or relative) to report files with Psalm issues.',
    category: 'External Analyzers',
    subCategory: 'PHP',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.pylint.reportPaths',
    name: 'Pylint Report Files',
    description: 'Paths (absolute or relative) to report files with Pylint issues.',
    category: 'External Analyzers',
    subCategory: 'Python',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.ruby.rubocop.reportPaths',
    name: 'RuboCop Report Files',
    description: 'Paths (absolute or relative) to json files with RuboCop issues.',
    category: 'External Analyzers',
    subCategory: 'Ruby',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.scala.scalastyle.reportPaths',
    name: 'Scalastyle Report Files',
    description: 'Paths (absolute or relative) to scalastyle xml files with Scalastyle issues.',
    category: 'External Analyzers',
    subCategory: 'Scala',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.scala.scapegoat.reportPaths',
    name: 'Scapegoat Report Files',
    description:
      'Paths (absolute or relative) to scapegoat xml files using scalastyle format. For example: scapegoat-scalastyle.xml',
    category: 'External Analyzers',
    subCategory: 'Scala',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.java.spotbugs.reportPaths',
    name: 'SpotBugs Report Files',
    description: 'Paths (absolute or relative) to xml files with SpotBugs issues.',
    category: 'External Analyzers',
    subCategory: 'Java',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.css.stylelint.reportPaths',
    name: 'Stylelint Report Files',
    description: 'Paths (absolute or relative) to the JSON files with stylelint issues.',
    category: 'External Analyzers',
    subCategory: 'CSS',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.swift.swiftLint.reportPaths',
    name: 'SwiftLint Report Files',
    description: 'Paths (absolute or relative) to the JSON files with SwiftLint issues.',
    category: 'External Analyzers',
    subCategory: 'Swift',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.typescript.tslint.reportPaths',
    name: 'TSLint Report Files',
    description: 'Paths (absolute or relative) to the JSON files with TSLint issues.',
    category: 'External Analyzers',
    subCategory: 'JavaScript/TypeScript',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.flex.cobertura.reportPaths',
    name: 'Cobertura xml report paths',
    description:
      'Comma separated list of paths to the Cobertura coverage report file. The paths may be either absolute or relative to the project base directory.',
    category: 'Flex',
    subCategory: 'Flex',
    multiValues: true,
    options: [],
    fields: [],
    deprecatedKey: 'sonar.flex.cobertura.reportPath',
  },
  {
    key: 'sonar.flex.file.suffixes',
    name: 'File suffixes',
    description: 'List of suffixes for files to analyze. To not filter, leave the list empty.',
    category: 'Flex',
    subCategory: 'Flex',
    defaultValue: 'as',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'email.smtp_host.secured',
    name: 'SMTP host',
    description: 'For example "smtp.gmail.com". Leave blank to disable email sending.',
    category: 'general',
    subCategory: 'email',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.login.message',
    name: 'Log-in Message',
    description:
      'If "Display log-in message" is set to True, the log-in message will be visible to anyone who can access the log-in page of this SonarQube instance.',
    type: SettingType.FORMATTED_TEXT,
    category: 'general',
    subCategory: 'Log-in message',
    options: [],
    fields: [],
  },
  {
    key: 'email.smtp_port.secured',
    name: 'SMTP port',
    description: 'Port number to connect with SMTP server.',
    type: SettingType.INTEGER,
    category: 'general',
    subCategory: 'email',
    defaultValue: '25',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.login.displayMessage',
    name: 'Display log-in Message',
    description:
      'Display the log-in message on the log-in page of this SonarQube instance. <br><br>Note: If the log-in message is empty. It will not appear even if this parameter is set to True',
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'Log-in message',
    options: [],
    fields: [],
  },
  {
    key: 'email.smtp_secure_connection.secured',
    name: 'Secure connection',
    description: 'Type of secure connection. Leave empty to not use secure connection.',
    type: SettingType.SINGLE_SELECT_LIST,
    category: 'general',
    subCategory: 'email',
    options: ['ssl', 'starttls'],
    fields: [],
  },
  {
    key: 'email.smtp_username.secured',
    name: 'SMTP username',
    description: 'Username to use with authenticated SMTP.',
    category: 'general',
    subCategory: 'email',
    options: [],
    fields: [],
  },
  {
    key: 'email.smtp_password.secured',
    name: 'SMTP password',
    description: 'Password to use with authenticated SMTP.',
    type: SettingType.PASSWORD,
    category: 'general',
    subCategory: 'email',
    options: [],
    fields: [],
  },
  {
    key: 'email.from',
    name: 'From address',
    description:
      'Emails will come from this address. For example - "noreply@sonarsource.com". Note that the mail server may ignore this setting.',
    category: 'general',
    subCategory: 'email',
    defaultValue: 'noreply@nowhere',
    options: [],
    fields: [],
  },
  {
    key: 'email.fromName',
    name: 'From name',
    description:
      'Emails will come from this address name. For example - "SonarQube". Note that the mail server may ignore this setting.',
    category: 'general',
    subCategory: 'email',
    defaultValue: 'SonarQube',
    options: [],
    fields: [],
  },
  {
    key: 'email.prefix',
    name: 'Email prefix',
    description: 'Prefix will be prepended to all outgoing email subjects.',
    category: 'general',
    subCategory: 'email',
    defaultValue: '[SONARQUBE]',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.announcement.message',
    name: 'Announcement message',
    description:
      'If "Display announcement message" is set to True, this message will be displayed in a warning banner to anyone who can access SonarQube. If this field is empty, no message will be displayed, even if "Display announcement message" is set to True.',
    type: SettingType.TEXT,
    category: 'general',
    subCategory: 'announcement',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.builtInQualityProfiles.disableNotificationOnUpdate',
    name: 'Avoid quality profiles notification',
    description:
      'Avoid sending email notification on each update of built-in quality profiles to quality profile administrators.',
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'general',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.cpd.cross_project',
    name: 'Cross project duplication detection',
    description:
      'DEPRECATED - By default, SonarQube detects duplications at project level. This means that a block duplicated on two different projects won\'t be reported. Setting this parameter to "true" allows to detect duplicates across projects. Note that activating this property will significantly increase each SonarQube analysis time, and therefore badly impact the performances of report processing as more and more projects are getting involved in this cross project duplication mechanism.',
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'duplications',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.issues.defaultAssigneeLogin',
    name: 'Default Assignee',
    description:
      'New issues will be assigned to this user each time it is not possible to determine the user who is the author of the issue.',
    type: SettingType.USER_LOGIN,
    category: 'general',
    subCategory: 'issues',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.projectCreation.mainBranchName',
    name: 'Default main branch name',
    description:
      'Each project has a main branch at creation. This setting defines the instance-wide default main branch name.  A user can override this when creating a project. This setting does not apply to projects imported from a DevOps platform.',
    category: 'general',
    subCategory: 'subProjectCreation',
    defaultValue: 'main',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.developerAggregatedInfo.disabled',
    name: 'Disable developer aggregated information',
    description: "Don't show issue facets aggregating information per developer",
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'issues',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.announcement.displayMessage',
    name: 'Display announcement message',
    description:
      'If set to True, the "Announcement message" will be displayed in a warning banner to anyone who can access SonarQube.',
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'announcement',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.ce.parallelProjectTasks',
    name: 'Enable running project analysis tasks in parallel',
    description:
      'When enabled, this feature will allow the Compute Engine to process pull request analysis tasks in parallel with other pull request or branch analysis tasks of the same project.',
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'Compute Engine',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.lf.enableGravatar',
    name: 'Enable support of gravatars',
    description: 'Gravatars are profile pictures of users based on their email.',
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'looknfeel',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.lf.gravatarServerUrl',
    name: 'Gravatar URL',
    description:
      'Optional URL of custom Gravatar service. Accepted variables are {EMAIL_MD5} for MD5 hash of email and {SIZE} for the picture size in pixels.',
    category: 'general',
    subCategory: 'looknfeel',
    defaultValue: 'https://secure.gravatar.com/avatar/{EMAIL_MD5}.jpg?s={SIZE}&d=identicon',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.qualitygate.ignoreSmallChanges',
    name: 'Ignore duplication and coverage on small changes',
    description:
      'Quality Gate conditions about duplications in new code and coverage on new code are ignored until the number of new lines is at least 20.',
    type: SettingType.BOOLEAN,
    category: 'general',
    subCategory: 'qualityGate',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.lf.logoUrl',
    name: 'Logo URL',
    description: 'URL to logo image. Any standard format is accepted.',
    category: 'general',
    subCategory: 'looknfeel',
    options: [],
    fields: [],
    deprecatedKey: 'sonar.branding.image',
  },
  {
    key: 'sonar.core.serverBaseURL',
    name: 'Server base URL',
    description:
      'HTTP(S) URL of this SonarQube server, such as <i>https://yourhost.yourdomain/sonar</i>. This value is used outside SonarQube itself, e.g. for PR decoration, emails, etc.',
    category: 'general',
    subCategory: 'general',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.lf.logoWidthPx',
    name: 'Width of image in pixels',
    description:
      'Width in pixels, constrained to 150px (the height of the image is constrained to 40px).',
    category: 'general',
    subCategory: 'looknfeel',
    options: [],
    fields: [],
    deprecatedKey: 'sonar.branding.image.width',
  },
  {
    key: 'sonar.go.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'Go',
    subCategory: 'General',
    defaultValue: '.go',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.go.exclusions',
    name: 'Go Exclusions',
    description: 'List of file path patterns to be excluded from analysis of Go files.',
    category: 'Go',
    subCategory: 'General',
    defaultValue: '**/vendor/**',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.go.tests.reportPaths',
    name: 'Path to test execution report(s)',
    description:
      "Path to test execution reports generated by Go with '-json' key, available since go1.10 (e.g.: go test -json > test-report.out).",
    category: 'Go',
    subCategory: 'Test and Coverage',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.go.coverage.reportPaths',
    name: 'Path to coverage report(s)',
    description:
      'Path to coverage reports generated by Go (e.g.: go test -coverprofile=coverage.out), ant patterns relative to project root are supported.',
    category: 'Go',
    subCategory: 'Test and Coverage',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.go.govet.reportPaths',
    name: '"go vet" Report Files',
    description: 'Paths (absolute or relative) to the files with "go vet" issues.',
    category: 'Go',
    subCategory: 'Popular Rule Engines',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.go.golint.reportPaths',
    name: 'Golint Report Files',
    description: 'Paths (absolute or relative) to the files with Golint issues.',
    category: 'Go',
    subCategory: 'Popular Rule Engines',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.go.gometalinter.reportPaths',
    name: 'GoMetaLinter Report Files',
    description: 'Paths (absolute or relative) to the files with GoMetaLinter issues.',
    category: 'Go',
    subCategory: 'Popular Rule Engines',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.go.golangci-lint.reportPaths',
    name: 'GolangCI-Lint Report Files',
    description: 'Paths (absolute or relative) to the files with GolangCI-Lint issues.',
    category: 'Go',
    subCategory: 'Popular Rule Engines',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.governance.report.project.branch.frequency',
    name: 'PDF Reports Frequency',
    description:
      'Define the frequency at which to send PDF reports.<ul><li>"Daily" => report is sent on a daily basis</li><li>"Weekly" => report is sent on a weekly basis</li><li>"Monthly" => report is sent on a monthly basis</li></ul>',
    type: SettingType.SINGLE_SELECT_LIST,
    category: 'Governance',
    subCategory: 'Project and Application PDF Reports',
    defaultValue: 'Monthly',
    options: ['Daily', 'Weekly', 'Monthly'],
    fields: [],
  },
  {
    key: 'sonar.portfolios.recompute.hours',
    name: 'Portfolio Calculation Hours',
    description:
      'Hours of the day at which outdated portfolios will be recalculated. Portfolios will be queued at the beginning of each selected hour. A 24-hour clock is used, so valid values are 0–23. If this value is empty or invalid, each portfolio will be recalculated immediately after it becomes outdated.',
    type: SettingType.INTEGER,
    category: 'Governance',
    subCategory: 'Recalculation',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.governance.report.view.frequency',
    name: 'Portfolio Reports Frequency',
    description:
      'Define the default frequency that will be used to send PDF reports for portfolios.<ul><li>"Daily" => report is sent during the first portfolio calculation of the day (if any)</li><li>"Weekly" => report is sent during the first portfolio calculation of the week (if any), starting from Midnight on Monday</li><li>"Monthly" => report is sent during the first portfolio calculation of the month (if any), starting from the first day of the current month</li></ul>',
    type: SettingType.SINGLE_SELECT_LIST,
    category: 'Governance',
    subCategory: 'Portfolio PDF Reports',
    defaultValue: 'Monthly',
    options: ['Daily', 'Weekly', 'Monthly'],
    fields: [],
  },
  {
    key: 'sonar.governance.report.view.recipients',
    name: 'Recipients',
    description:
      'Email addresses of people who will automatically receive a PDF report for every portfolio defined in the system, based on the given frequency.',
    category: 'Governance',
    subCategory: 'Portfolio PDF Reports',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.hoursBeforeKeepingOnlyOneSnapshotByDay',
    name: 'Keep only one analysis a day after',
    description:
      'After this number of hours, if there are several analyses during the same day, the DbCleaner keeps the most recent one and fully deletes the other ones.',
    type: SettingType.INTEGER,
    category: 'housekeeping',
    subCategory: 'general',
    defaultValue: '24',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.daysBeforeDeletingInactiveBranchesAndPRs',
    name: 'Number of days before purging inactive branches and pull requests',
    description:
      'Branches and pull requests are permanently deleted when there has been no analysis for the configured number of days.',
    type: SettingType.INTEGER,
    category: 'housekeeping',
    subCategory: 'branchesAndPullRequests',
    defaultValue: '30',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.branchesToKeepWhenInactive',
    name: 'Branches to keep when inactive',
    description:
      'By default, branches and pull requests are automatically deleted when inactive. This setting allows you to protect branches (but not pull requests) from this deletion. When a branch is created with a name that matches any of the regular expressions on the list of values of this setting, the branch will not be deleted automatically even when it becomes inactive.<br>Example:<ul><li>develop</li><li>release-.*</li></ul>',
    type: SettingType.REGULAR_EXPRESSION,
    category: 'housekeeping',
    subCategory: 'branchesAndPullRequests',
    defaultValue: 'main,master,develop,trunk',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.weeksBeforeKeepingOnlyOneSnapshotByWeek',
    name: 'Keep only one analysis a week after',
    description:
      'After this number of weeks, if there are several analyses during the same week, the DbCleaner keeps the most recent one and fully deletes the other ones',
    type: SettingType.INTEGER,
    category: 'housekeeping',
    subCategory: 'general',
    defaultValue: '4',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.weeksBeforeKeepingOnlyOneSnapshotByMonth',
    name: 'Keep only one analysis a month after',
    description:
      'After this number of weeks, if there are several analyses during the same month, the DbCleaner keeps the most recent one and fully deletes the other ones.',
    type: SettingType.INTEGER,
    category: 'housekeeping',
    subCategory: 'general',
    defaultValue: '52',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.weeksBeforeKeepingOnlyAnalysesWithVersion',
    name: 'Keep only analyses with a version event after',
    description:
      'After this number of weeks, the DbCleaner keeps only analyses with a version event associated.',
    type: SettingType.INTEGER,
    category: 'housekeeping',
    subCategory: 'general',
    defaultValue: '104',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.weeksBeforeDeletingAllSnapshots',
    name: 'Delete all analyses after',
    description: 'After this number of weeks, all analyses are fully deleted.',
    type: SettingType.INTEGER,
    category: 'housekeeping',
    subCategory: 'general',
    defaultValue: '260',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.daysBeforeDeletingClosedIssues',
    name: 'Delete closed issues after',
    description: 'Issues that have been closed for more than this number of days will be deleted.',
    type: SettingType.INTEGER,
    category: 'housekeeping',
    subCategory: 'general',
    defaultValue: '30',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.dbcleaner.auditHousekeeping',
    name: 'Audit Logs Housekeeping Frequency',
    description:
      'Define the frequency that will be used to delete security-related audit logs.<br>Setting your housekeeping policy to keep your audit logs for a long period of time (for example, only deleting logs yearly) can increase your database size and the amount of time it takes to download audit logs.<ul><li>"Weekly" => Audit logs older than a week will be deleted</li><li>"Monthly" => Audit logs older than a month will be deleted</li><li>"Trimestrial" => Audit logs older than 3 months will be deleted</li><li>"Yearly" => Audit logs older than a year will be deleted</li></ul>',
    type: SettingType.SINGLE_SELECT_LIST,
    category: 'housekeeping',
    subCategory: 'auditLogs',
    defaultValue: 'Monthly',
    options: ['Weekly', 'Monthly', 'Trimestrial', 'Yearly'],
    fields: [],
  },
  {
    key: 'sonar.html.file.suffixes',
    name: 'HTML File suffixes',
    description: 'List of file suffixes that will be scanned.',
    category: 'HTML',
    subCategory: 'HTML',
    defaultValue: '.html,.xhtml,.cshtml,.vbhtml,.aspx,.ascx,.rhtml,.erb,.shtm,.shtml,.cmp,.twig',
    multiValues: true,
    options: [],
    fields: [],
    deprecatedKey: 'sonar.web.file.suffixes',
  },
  {
    key: 'sonar.jsp.file.suffixes',
    name: 'JSP File suffixes',
    description: 'List of JSP file suffixes that will be scanned.',
    category: 'HTML',
    subCategory: 'HTML',
    defaultValue: '.jsp,.jspf,.jspx',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.coverage.jacoco.xmlReportPaths',
    description:
      'Paths to JaCoCo XML coverage report files. Each path can be either absolute or relative to the project base directory. Wildcard patterns are accepted (*, ** and ?).',
    category: 'JaCoCo',
    subCategory: 'JaCoCo',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.java.file.suffixes',
    name: 'File suffixes',
    description: 'List of suffixes for Java files to analyze. To not filter, leave the list empty.',
    category: 'java',
    subCategory: 'General',
    defaultValue: '.java,.jav',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.junit.reportPaths',
    name: 'JUnit Report Paths',
    description:
      'Comma-separated paths to the various directories containing the *.xml JUnit report files. Each path may be absolute or relative to the project base directory.',
    category: 'java',
    subCategory: 'JUnit',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.javascript.globals',
    name: 'Global variables',
    description: 'List of global variables.',
    category: 'JavaScript / TypeScript',
    subCategory: 'General',
    defaultValue: 'angular,goog,google,OenLayers,d3,dojo,dojox,dijit,Backbone,moment,casper,_,sap',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.javascript.ignoreHeaderComments',
    name: 'Ignore header comments',
    description: 'True to not count file header comments in comment metrics.',
    type: SettingType.BOOLEAN,
    category: 'JavaScript / TypeScript',
    subCategory: 'General',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.javascript.environments',
    name: 'JavaScript execution environments',
    description:
      'List of environments names. The analyzer automatically adds global variables based on that list. Available environment names: amd, applescript, atomtest, browser, commonjs, couch, embertest, flow, greasemonkey, jasmine, jest, jquery, meteor, mocha, mongo, nashorn, node, phantomjs, prototypejs, protractor, qunit, rhino, serviceworker, shared-node-browser, shelljs, webextensions, worker, wsh, yui.',
    category: 'JavaScript / TypeScript',
    subCategory: 'General',
    defaultValue:
      'amd,applescript,atomtest,browser,commonjs,couch,embertest,flow,greasemonkey,jasmine,jest,jquery,meteor,mocha,mongo,nashorn,node,phantomjs,prototypejs,protractor,qunit,rhino,serviceworker,shared-node-browser,shelljs,webextensions,worker,wsh,yui',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.javascript.file.suffixes',
    name: 'JavaScript File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'JavaScript / TypeScript',
    subCategory: 'General',
    defaultValue: '.js,.jsx,.cjs,.mjs,.vue',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.javascript.lcov.reportPaths',
    name: 'LCOV Files',
    description: 'Paths (absolute or relative) to the files with LCOV data.',
    category: 'JavaScript / TypeScript',
    subCategory: 'Tests and Coverage',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.javascript.maxFileSize',
    name: 'Maximum size of analyzed files',
    description:
      'Threshold for the maximum size of analyzed files (in kilobytes). Files that are larger are excluded from the analysis.',
    type: SettingType.INTEGER,
    category: 'JavaScript / TypeScript',
    subCategory: 'General',
    defaultValue: '1000',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.typescript.file.suffixes',
    name: 'TypeScript File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'JavaScript / TypeScript',
    subCategory: 'General',
    defaultValue: '.ts,.tsx,.cts,.mts',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.typescript.tsconfigPaths',
    name: 'TypeScript tsconfig.json location',
    description: 'Comma-delimited list of paths to TSConfig files. Wildcards are supported.',
    category: 'JavaScript / TypeScript',
    subCategory: 'TypeScript',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.json.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes of JSON files to be indexed.',
    category: SettingType.JSON,
    subCategory: 'General',
    defaultValue: '.json',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.kotlin.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'Kotlin',
    subCategory: 'General',
    defaultValue: '.kt',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.kubernetes.activate',
    name: 'Activate Kubernetes analysis',
    description: 'Activate analysis of JSON and Yaml files recognized as Kubernetes files.',
    type: SettingType.BOOLEAN,
    category: 'Kubernetes',
    subCategory: 'General',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.php.coverage.reportPaths',
    name: 'Coverage Reports',
    description:
      'List of PHPUnit code coverage report files. Each path can be either absolute or relative.',
    category: 'PHP',
    subCategory: 'PHPUnit',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.php.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes of PHP files to analyze.',
    category: 'PHP',
    subCategory: 'General',
    defaultValue: 'php,php3,php4,php5,phtml,inc',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.php.exclusions',
    name: 'PHP Exclusions',
    description: 'List of file path patterns to be excluded from analysis of PHP files.',
    category: 'PHP',
    subCategory: 'General',
    defaultValue: '**/vendor/**',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.php.tests.reportPath',
    name: 'Unit Test Report',
    description:
      'Path to the PHPUnit unit test execution report file. The path may be either absolute or relative to the project base directory.',
    category: 'PHP',
    subCategory: 'PHPUnit',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.pli.extralingualCharacters',
    name: 'Extralingual characters',
    description:
      'Extralingual characters which should be considered as valid in identifiers. No separator should be used. Example: #@$£§',
    category: 'PL/I',
    subCategory: 'PL/I',
    defaultValue: '#@$',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.pli.file.suffixes',
    name: 'File suffixes',
    description:
      'List of suffixes for PL/I files to analyze. To not change the defaults, leave the list empty.',
    category: 'PL/I',
    subCategory: 'PL/I',
    defaultValue: '.pli',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.pli.ignoreHeaderComments',
    name: 'Ignore header comments',
    description: "Set to 'true' to enable, or 'false' to disable.",
    type: SettingType.BOOLEAN,
    category: 'PL/I',
    subCategory: 'PL/I',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.pli.marginLeft',
    name: 'Margin left',
    description:
      "The column number of the source's leftmost character, must be greater or equal to 1.",
    type: SettingType.INTEGER,
    category: 'PL/I',
    subCategory: 'PL/I',
    defaultValue: '2',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.pli.marginRight',
    name: 'Margin right',
    description:
      "The column number of the source's rightmost character, must be greater or equal to the leftmost's one, or 0 to indicate an unlimited right margin.",
    type: SettingType.INTEGER,
    category: 'PL/I',
    subCategory: 'PL/I',
    defaultValue: '72',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.plsql.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'PL/SQL',
    subCategory: 'General',
    defaultValue: 'sql,pks,pkb',
    multiValues: true,
    options: [],
    fields: [],
    deprecatedKey: 'sonar.plsql.suffixes',
  },
  {
    key: 'sonar.plsql.ignoreHeaderComments',
    name: 'Ignore Header Comments',
    description:
      'If set to "true", the file headers (that are usually the same on each file: licensing information for example) are not considered as comments. Thus metrics such as "Comment lines" do not get incremented. If set to "false", those file headers are considered as comments and metrics such as "Comment lines" get incremented.',
    type: SettingType.BOOLEAN,
    category: 'PL/SQL',
    subCategory: 'General',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes of Python files to analyze.',
    category: 'Python',
    subCategory: 'General',
    defaultValue: 'py',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.coverage.reportPaths',
    name: 'Path to coverage report(s)',
    description:
      'List of paths pointing to coverage reports. Ant patterns are accepted for relative path. The reports have to conform to the Cobertura XML format.',
    category: 'Python',
    subCategory: 'Tests and Coverage',
    defaultValue: 'coverage-reports/*coverage-*.xml',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.coverage.reportPath',
    name: 'Path to coverage report',
    description:
      'DEPRECATED : Use sonar.python.coverage.reportPaths instead. Path to a coverage report. Ant patterns are accepted for relative path. The report has to conform to the Cobertura XML format.',
    category: 'Python',
    subCategory: 'Tests and Coverage',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.xunit.skipDetails',
    name: 'Skip the details when importing the Xunit reports',
    description:
      'When enabled the test execution statistics is provided only on project level. Use this mode when paths in report are not found. Disabled by default.',
    type: SettingType.BOOLEAN,
    category: 'Python',
    subCategory: 'Tests and Coverage',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.python.xunit.reportPath',
    name: 'Path to xunit report(s)',
    description:
      "Path to the report of test execution, relative to project's root. Ant patterns are accepted. The reports have to conform to the junitreport XML format.",
    category: 'Python',
    subCategory: 'Tests and Coverage',
    defaultValue: 'xunit-reports/xunit-result-*.xml',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.rpg.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes of RPG files to analyze.',
    category: 'RPG',
    subCategory: 'RPG',
    defaultValue: '.rpg,.rpgle,.sqlrpgle,.RPG,.RPGLE,.SQLRPGLE',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.rpg.leftMarginWidth',
    name: 'Left margin width',
    description:
      'Number of characters to the left of the standard 5-character comment block. In an RPG "source physical file" this will typically be 12, but it may not be present in your files depending on your extraction process.',
    type: SettingType.INTEGER,
    category: 'RPG',
    subCategory: 'RPG',
    defaultValue: '12',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.ruby.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'Ruby',
    subCategory: 'General',
    defaultValue: '.rb',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.ruby.coverage.reportPaths',
    name: 'Path to coverage report(s)',
    description:
      'Path to coverage report files (.resultset.json) generated by SimpleCov. The path may be absolute or relative to the project base directory.',
    category: 'Ruby',
    subCategory: 'Test and Coverage',
    defaultValue: 'coverage/.resultset.json',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.ruby.exclusions',
    name: 'Ruby Exclusions',
    description: 'List of file path patterns to be excluded from analysis of Ruby files.',
    category: 'Ruby',
    subCategory: 'General',
    defaultValue: '**/vendor/**',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.security.config.roslyn.sonaranalyzer.security.cs',
    name: 'C# custom configuration',
    description:
      "Custom configuration of the C# SAST engine. Details on the expected JSON format can be found on the 'Security Engine Custom Configuration' documentation page.",
    type: SettingType.JSON,
    category: 'SAST Engine',
    subCategory: 'Configuration',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.security.config.javasecurity',
    name: 'Java custom configuration',
    description:
      "Custom configuration of the Java SAST engine. Details on the expected JSON format can be found on the 'Security Engine Custom Configuration' documentation page.",
    type: SettingType.JSON,
    category: 'SAST Engine',
    subCategory: 'Configuration',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.security.config.phpsecurity',
    name: 'PHP custom configuration',
    description:
      "Custom configuration of the PHP SAST engine. Details on the expected JSON format can be found on the 'Security Engine Custom Configuration' documentation page.",
    type: SettingType.JSON,
    category: 'SAST Engine',
    subCategory: 'Configuration',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.security.config.pythonsecurity',
    name: 'Python custom configuration',
    description:
      "Custom configuration of the Python SAST engine. Details on the expected JSON format can be found on the 'Security Engine Custom Configuration' documentation page.",
    type: SettingType.JSON,
    category: 'SAST Engine',
    subCategory: 'Configuration',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.scala.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'Scala',
    subCategory: 'General',
    defaultValue: '.scala',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.scala.coverage.reportPaths',
    name: 'Path to Scoverage report',
    description:
      'Path to Scoverage report file(s) (scoverage.xml). Usually in target\\scala-X.X\\scoverage-report',
    category: 'Scala',
    subCategory: 'Test and Coverage',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.scm.disabled',
    name: 'Disable the SCM Sensor',
    description: 'Disable the retrieval of blame information from Source Control Manager',
    type: SettingType.BOOLEAN,
    category: 'scm',
    subCategory: 'scm',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.text.excluded.file.suffixes',
    name: 'Additional binary file suffixes',
    description:
      'Additional list of binary file suffixes that should not be analyzed with rules targeting text files.',
    category: 'Secrets',
    subCategory: 'General',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.auth.token.max.allowed.lifetime',
    name: 'Maximum allowed lifetime for token',
    description:
      'Define the maximum lifetime that can be used for new tokens. Existing tokens are not impacted and may need to be manually revoked.',
    type: SettingType.SINGLE_SELECT_LIST,
    category: 'security',
    subCategory: 'security',
    defaultValue: 'No expiration',
    options: ['30 days', '90 days', '1 year', 'No expiration'],
    fields: [],
  },
  {
    key: 'sonar.validateWebhooks',
    name: 'Enable local webhooks validation',
    description:
      'Forcing local webhooks validation prevents the creation and triggering of local webhooks<br><strong>Disabling this setting can expose the instance to security risks.</strong>',
    type: SettingType.BOOLEAN,
    category: 'security',
    subCategory: 'security',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.allowPermissionManagementForProjectAdmins',
    name: 'Enable permission management for project administrators',
    description:
      "Set if users with 'Administer' role in a project should be allowed to change project permissions. By default users with 'Administer' role are allowed to change both project configuration and project permissions.",
    type: SettingType.BOOLEAN,
    category: 'security',
    subCategory: 'security',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.forceAuthentication',
    name: 'Force user authentication',
    description:
      'Forcing user authentication prevents anonymous users from accessing the SonarQube UI, or project data via the Web API. Some specific read-only Web APIs, including those required to prompt authentication, are still available anonymously.<br><strong>Disabling this setting can expose the instance to security risks.</strong>',
    type: SettingType.BOOLEAN,
    category: 'security',
    subCategory: 'security',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.swift.coverage.reportPath',
    name: 'Code coverage report',
    description:
      'DEPRECATED: Path of the coverage report generated from "llvm-cov show". This path can be either absolute or relative to the project directory.',
    category: 'Swift',
    subCategory: 'Swift',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.swift.coverage.reportPaths',
    name: 'Code coverage reports',
    description:
      'Paths to the coverage reports generated from "llvm-cov show". These paths can be either absolute or relative to the project directory.',
    category: 'Swift',
    subCategory: 'Swift',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.swift.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'Swift',
    subCategory: 'Swift',
    defaultValue: '.swift',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.tsql.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'T-SQL',
    subCategory: 'General',
    defaultValue: '.tsql',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.technicalDebt.developmentCost',
    name: 'Development cost',
    description:
      'Cost to develop one line of code (LOC). Example: if the cost to develop 1 LOC has been estimated at 30 minutes, then the value of this property would be 30.',
    category: 'technicalDebt',
    subCategory: 'technicalDebt',
    defaultValue: '30',
    options: [],
    fields: [],
    deprecatedKey: 'workUnitsBySizePoint',
  },
  {
    key: 'languageSpecificParameters',
    name: 'Language specific parameters',
    description:
      'DEPRECATED - The parameters specified here for a given language will override the general parameters defined in this section.',
    type: SettingType.PROPERTY_SET,
    category: 'technicalDebt',
    subCategory: 'technicalDebt',
    options: [],
    fields: [
      {
        key: 'language',
        name: 'Language Key',
        description: 'Ex: java, cs, cpp...',
        options: [],
      },
      {
        key: 'man_days',
        name: 'Development cost',
        description: 'If left blank, the generic value defined in this section will be used.',
        type: SettingType.FLOAT,
        options: [],
      },
    ],
    deprecatedKey: 'languageSpecificParameters',
  },
  {
    key: 'sonar.technicalDebt.ratingGrid',
    name: 'Maintainability rating grid',
    description:
      'Maintainability ratings range from A (very good) to E (very bad). The rating is determined by the value of the Technical Debt Ratio, which compares the technical debt on a project to the cost it would take to rewrite the code from scratch. The default values for A through D are 0.05,0.1,0.2,0.5. Anything over 0.5 is an E. Example: assuming the development cost is 30 minutes, a project with a technical debt of 24,000 minutes for 2,500 LOC will have a technical debt ratio of 24000/(30 * 2,500) = 0.32. That yields a maintainability rating of D.',
    category: 'technicalDebt',
    subCategory: 'technicalDebt',
    defaultValue: '0.05,0.1,0.2,0.5',
    options: [],
    fields: [],
    deprecatedKey: 'ratingGrid',
  },
  {
    key: 'sonar.terraform.activate',
    name: 'Activate Terraform Analysis',
    description:
      'Disabling Terraform analysis ensures that no Terraform files are parsed, highlighted and analyzed, and no IaC analysis results are included in the quality gate.',
    type: SettingType.BOOLEAN,
    category: 'Terraform',
    subCategory: 'General',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.terraform.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes of Terraform files to analyze.',
    category: 'Terraform',
    subCategory: 'General',
    defaultValue: '.tf',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.terraform.provider.aws.version',
    name: 'AWS Provider Version',
    description:
      'Version of the AWS provider of lifecycle management of AWS resources. Use semantic versioning format like `3.4`, `4.17.1` or `4`',
    category: 'Terraform',
    subCategory: 'Provider Versions',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.terraform.provider.azure.version',
    name: 'Azure Provider Version',
    description:
      'Version of the Azure Resource Manager provider of lifecycle management of Microsoft Azure resources. Use semantic versioning format like `3.4`, `4.17.1` or `4`',
    category: 'Terraform',
    subCategory: 'Provider Versions',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vbnet.analyzeGeneratedCode',
    name: 'Analyze generated code',
    description:
      'If set to "true", the files containing generated code are analyzed. If set to "false", the files containing generated code are ignored.',
    type: SettingType.BOOLEAN,
    category: 'VB.NET',
    subCategory: 'VB.NET',
    defaultValue: 'false',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vbnet.file.suffixes',
    name: 'File suffixes',
    description: 'List of suffixes for files to analyze.',
    category: 'VB.NET',
    subCategory: 'VB.NET',
    defaultValue: '.vb',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vbnet.ignoreHeaderComments',
    name: 'Ignore header comments',
    description:
      'If set to "true", the file headers (that are usually the same on each file: licensing information for example) are not considered as comments. Thus metrics such as "Comment lines" do not get incremented. If set to "false", those file headers are considered as comments and metrics such as "Comment lines" get incremented.',
    type: SettingType.BOOLEAN,
    category: 'VB.NET',
    subCategory: 'VB.NET',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vb.file.suffixes',
    name: 'File Suffixes',
    description:
      'List of suffixes for Visual Basic files to analyze. To not change the defaults, leave the list empty.',
    category: 'Visual Basic',
    subCategory: 'Visual Basic',
    defaultValue: '.bas,.frm,.cls,.ctl,.BAS,.FRM,.CLS,.CTL',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.vb.ignoreHeaderComments',
    name: 'Ignore header comments',
    description: "Set to 'true' to enable, or 'false' to disable.",
    type: SettingType.BOOLEAN,
    category: 'Visual Basic',
    subCategory: 'Visual Basic',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
  {
    key: 'sonar.xml.file.suffixes',
    name: 'File suffixes',
    description: 'List of suffixes for XML files to analyze.',
    category: 'XML',
    subCategory: 'XML',
    defaultValue: '.xml,.xsd,.xsl',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    key: 'sonar.yaml.file.suffixes',
    name: 'File Suffixes',
    description: 'List of suffixes of YAML files to be indexed.',
    category: 'YAML',
    subCategory: 'General',
    defaultValue: '.yaml,.yml',
    multiValues: true,
    options: [],
    fields: [],
  },
  {
    name: 'Provision project visibility',
    key: 'provisioning.github.project.visibility.enabled',
    description:
      'Change project visibility based on GitHub repository visibility. If disabled, every provisioned project will be private and will be seen only for those users that have explicit GitHub permissions for the according repository.',
    type: SettingType.BOOLEAN,
    category: 'authentication',
    subCategory: 'github',
    defaultValue: 'true',
    options: [],
    fields: [],
  },
];