forked from elfmz/far2l
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format.json
56 lines (56 loc) · 1.79 KB
/
.clang-format.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "far2l-clang-format",
"title": "ClangFormat Options for far2l",
"allOf": [
{
"$ref": "http://jetbrains.com/schema/clangformat.json"
}
],
"properties": {
"UseTab": {
"title": "The way to use tab characters in the resulting file.",
"x-intellij-html-description": "Modified to match https://github.com/elfmz/llvm-project",
"enum": [
"Never",
"ForIndentation",
"ForContinuationAndIndentation",
"AlignWithSpaces",
"Always",
"ForContinuationAndIndentationAndComments"
],
"type": "string"
},
"AlignByTab": {
"title": "Align by tab.",
"x-intellij-html-description": "Added to match https://github.com/elfmz/llvm-project",
"type": "boolean"
},
"BreakConstructorInitializers": {
"title": "Break constructor initializers.",
"x-intellij-html-description": "Modified to match https://github.com/elfmz/llvm-project",
"enum": [
"AfterColonSeparated"
],
"type": "string"
},
"SpaceBeforeAssignmentOperators": {
"title": "If `false`, spaces will be removed before assignment operators.",
"x-intellij-html-description": "Modified to match https://github.com/elfmz/llvm-project",
"enum": [
"OnlyTrivial"
],
"type": "string"
},
"AlignConsecutiveMembersAssignments": {
"title": "Align consecutive members assignments.",
"x-intellij-html-description": "Added to match https://github.com/elfmz/llvm-project",
"type": "boolean"
},
"AllowLongTrailingComments": {
"title": "Allow long trailing comments.",
"x-intellij-html-description": "Added to match https://github.com/elfmz/llvm-project",
"type": "boolean"
}
}
}