You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mrdocs.schema.json
+60Lines changed: 60 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -297,6 +297,66 @@
297
297
"title": "Detect and reduce SFINAE expressions",
298
298
"type": "boolean"
299
299
},
300
+
"sort-members": {
301
+
"default": true,
302
+
"description": "When set to `true`, sort the members of a record or namespace by name and parameters. When set to `false`, the members are included in the declaration order they are extracted.",
303
+
"enum": [
304
+
true,
305
+
false
306
+
],
307
+
"title": "Sort the members of a record or namespace",
308
+
"type": "boolean"
309
+
},
310
+
"sort-members-assignment-1st": {
311
+
"default": true,
312
+
"description": "When set to `true`, assignment operators are sorted first in the list of members of a record.",
313
+
"enum": [
314
+
true,
315
+
false
316
+
],
317
+
"title": "Sort assignment operators first",
318
+
"type": "boolean"
319
+
},
320
+
"sort-members-conversion-last": {
321
+
"default": true,
322
+
"description": "When set to `true`, conversion operators are sorted last in the list of members of a record or namespace.",
323
+
"enum": [
324
+
true,
325
+
false
326
+
],
327
+
"title": "Sort conversion operators last",
328
+
"type": "boolean"
329
+
},
330
+
"sort-members-ctors-1st": {
331
+
"default": true,
332
+
"description": "When set to `true`, constructors are sorted first in the list of members of a record.",
333
+
"enum": [
334
+
true,
335
+
false
336
+
],
337
+
"title": "Sort constructors first",
338
+
"type": "boolean"
339
+
},
340
+
"sort-members-dtors-1st": {
341
+
"default": true,
342
+
"description": "When set to `true`, destructors are sorted first in the list of members of a record.",
343
+
"enum": [
344
+
true,
345
+
false
346
+
],
347
+
"title": "Sort destructors first",
348
+
"type": "boolean"
349
+
},
350
+
"sort-members-relational-last": {
351
+
"default": true,
352
+
"description": "When set to `true`, relational operators are sorted last in the list of members of a record or namespace.",
353
+
"enum": [
354
+
true,
355
+
false
356
+
],
357
+
"title": "Sort relational operators last",
358
+
"type": "boolean"
359
+
},
300
360
"source-root": {
301
361
"default": "<config-dir>",
302
362
"description": "Path to the root directory of the source code. This path is used as a default for input files and a base for relative paths formed from absolute paths. This should typically be the root directory of the git project, as relative paths formed from it can be used to create links to these source files in the repository. Templates use the `base-url` option to create links to the source code.",
0 commit comments