|
2 | 2 | "name": "clang-format", |
3 | 3 | "displayName": "Clang-Format", |
4 | 4 | "description": "Use Clang-Format in Visual Studio Code", |
5 | | - "version": "0.6.1", |
| 5 | + "version": "0.9.0", |
6 | 6 | "publisher": "xaver", |
7 | 7 | "engines": { |
8 | 8 | "vscode": "^1.0.0" |
9 | 9 | }, |
10 | 10 | "dependencies": { |
11 | | - "sax" : "^1.1.5" |
| 11 | + "sax": "^1.1.5" |
12 | 12 | }, |
13 | 13 | "categories": [ |
14 | 14 | "Other" |
|
34 | 34 | "description": "Run 'clang-format' on save." |
35 | 35 | }, |
36 | 36 | "clang-format.executable": { |
37 | | - "type": "string", |
38 | | - "default": "clang-format", |
39 | | - "description": "clang-format executable path" |
40 | | - }, |
41 | | - // style |
| 37 | + "type": "string", |
| 38 | + "default": "clang-format", |
| 39 | + "description": "clang-format executable path" |
| 40 | + }, |
42 | 41 | "clang-format.style": { |
43 | | - "type": "string", |
44 | | - "default": "file", |
45 | | - "description": "clang-format style.(-style=value, value can be file, LLVM, Google, Chromium, Mozilla, WebKit or json configure)" |
46 | | - }, |
47 | | - // fallback style |
| 42 | + "type": "string", |
| 43 | + "default": "file", |
| 44 | + "description": "clang-format style.(-style=value, value can be file, LLVM, Google, Chromium, Mozilla, WebKit or json configure)" |
| 45 | + }, |
48 | 46 | "clang-format.fallbackStyle": { |
49 | | - "type": "string", |
50 | | - "default": "LLVM", |
51 | | - "description": "clang-format fallback style.(-fallback-style=value, value can be none, LLVM, Google, Chromium, Mozilla, WebKit)" |
52 | | - }, |
53 | | - // every language can has it's own style & fallback style option, if not confirured, use the default value above |
| 47 | + "type": "string", |
| 48 | + "default": "LLVM", |
| 49 | + "description": "clang-format fallback style.(-fallback-style=value, value can be none, LLVM, Google, Chromium, Mozilla, WebKit)" |
| 50 | + }, |
54 | 51 | "clang-format.language.cpp.style": { |
55 | | - "type": "string", |
56 | | - "default": "", |
57 | | - "description": "clang-format fallback style for c++, left empty to use clang-format.style" |
58 | | - }, |
| 52 | + "type": "string", |
| 53 | + "default": "", |
| 54 | + "description": "clang-format fallback style for c++, left empty to use clang-format.style" |
| 55 | + }, |
59 | 56 | "clang-format.language.cpp.fallbackStyle": { |
60 | | - "type": "string", |
61 | | - "default": "", |
62 | | - "description": "clang-format fallback style for c++, left empty to use clang-format.fallbackStyle" |
63 | | - }, |
| 57 | + "type": "string", |
| 58 | + "default": "", |
| 59 | + "description": "clang-format fallback style for c++, left empty to use clang-format.fallbackStyle" |
| 60 | + }, |
64 | 61 | "clang-format.language.c.style": { |
65 | | - "type": "string", |
66 | | - "default": "", |
67 | | - "description": "clang-format fallback style for c, left empty to use clang-format.style" |
68 | | - }, |
| 62 | + "type": "string", |
| 63 | + "default": "", |
| 64 | + "description": "clang-format fallback style for c, left empty to use clang-format.style" |
| 65 | + }, |
69 | 66 | "clang-format.language.c.fallbackStyle": { |
70 | | - "type": "string", |
71 | | - "default": "", |
72 | | - "description": "clang-format fallback style for c, left empty to use clang-format.fallbackStyle" |
73 | | - }, |
| 67 | + "type": "string", |
| 68 | + "default": "", |
| 69 | + "description": "clang-format fallback style for c, left empty to use clang-format.fallbackStyle" |
| 70 | + }, |
74 | 71 | "clang-format.language.objective-c.style": { |
75 | | - "type": "string", |
76 | | - "default": "", |
77 | | - "description": "clang-format fallback style for objective-c, left empty to use clang-format.style" |
78 | | - }, |
| 72 | + "type": "string", |
| 73 | + "default": "", |
| 74 | + "description": "clang-format fallback style for objective-c, left empty to use clang-format.style" |
| 75 | + }, |
79 | 76 | "clang-format.language.objective-c.fallbackStyle": { |
80 | | - "type": "string", |
81 | | - "default": "", |
82 | | - "description": "clang-format fallback style for objective-c, left empty to use clang-format.fallbackStyle" |
83 | | - }, |
| 77 | + "type": "string", |
| 78 | + "default": "", |
| 79 | + "description": "clang-format fallback style for objective-c, left empty to use clang-format.fallbackStyle" |
| 80 | + }, |
84 | 81 | "clang-format.language.java.style": { |
85 | | - "type": "string", |
86 | | - "default": "", |
87 | | - "description": "clang-format fallback style for java, left empty to use clang-format.style" |
88 | | - }, |
| 82 | + "type": "string", |
| 83 | + "default": "", |
| 84 | + "description": "clang-format fallback style for java, left empty to use clang-format.style" |
| 85 | + }, |
89 | 86 | "clang-format.language.java.fallbackStyle": { |
90 | | - "type": "string", |
91 | | - "default": "", |
92 | | - "description": "clang-format fallback style for java, left empty to use clang-format.fallbackStyle" |
93 | | - }, |
| 87 | + "type": "string", |
| 88 | + "default": "", |
| 89 | + "description": "clang-format fallback style for java, left empty to use clang-format.fallbackStyle" |
| 90 | + }, |
94 | 91 | "clang-format.language.javascript.style": { |
95 | | - "type": "string", |
96 | | - "default": "", |
97 | | - "description": "clang-format fallback style for javascript, left empty to use clang-format.style" |
98 | | - }, |
| 92 | + "type": "string", |
| 93 | + "default": "", |
| 94 | + "description": "clang-format fallback style for javascript, left empty to use clang-format.style" |
| 95 | + }, |
99 | 96 | "clang-format.language.javascript.fallbackStyle": { |
100 | | - "type": "string", |
101 | | - "default": "", |
102 | | - "description": "clang-format fallback style for javascript, left empty to use clang-format.fallbackStyle" |
103 | | - }, |
| 97 | + "type": "string", |
| 98 | + "default": "", |
| 99 | + "description": "clang-format fallback style for javascript, left empty to use clang-format.fallbackStyle" |
| 100 | + }, |
104 | 101 | "clang-format.language.typescript.style": { |
105 | | - "type": "string", |
106 | | - "default": "", |
107 | | - "description": "clang-format fallback style for typescript, left empty to use clang-format.style" |
108 | | - }, |
| 102 | + "type": "string", |
| 103 | + "default": "", |
| 104 | + "description": "clang-format fallback style for typescript, left empty to use clang-format.style" |
| 105 | + }, |
109 | 106 | "clang-format.language.typescript.fallbackStyle": { |
110 | | - "type": "string", |
111 | | - "default": "", |
112 | | - "description": "clang-format fallback style for typescript, left empty to use clang-format.fallbackStyle" |
113 | | - }, |
| 107 | + "type": "string", |
| 108 | + "default": "", |
| 109 | + "description": "clang-format fallback style for typescript, left empty to use clang-format.fallbackStyle" |
| 110 | + }, |
114 | 111 | "clang-format.language.proto.style": { |
115 | | - "type": "string", |
116 | | - "default": "", |
117 | | - "description": "clang-format fallback style for proto, left empty to use clang-format.style" |
118 | | - }, |
| 112 | + "type": "string", |
| 113 | + "default": "", |
| 114 | + "description": "clang-format fallback style for proto, left empty to use clang-format.style" |
| 115 | + }, |
119 | 116 | "clang-format.language.proto.fallbackStyle": { |
120 | | - "type": "string", |
121 | | - "default": "", |
122 | | - "description": "clang-format fallback style for proto, left empty to use clang-format.fallbackStyle" |
123 | | - } |
| 117 | + "type": "string", |
| 118 | + "default": "", |
| 119 | + "description": "clang-format fallback style for proto, left empty to use clang-format.fallbackStyle" |
| 120 | + } |
124 | 121 | } |
125 | 122 | } |
126 | 123 | }, |
|
0 commit comments