Disable options in clang-format formatter

This commit is contained in:
Yang Zhang 2015-09-23 00:18:35 +08:00
parent 9985f0677b
commit 185edce22e
1 changed files with 3 additions and 3 deletions

View File

@ -12,9 +12,9 @@ module.exports = class ClangFormat extends Beautifier
name: "clang-format"
options: {
"C++": true
"C": true
"Objective-C": true
"C++": false
"C": false
"Objective-C": false
}
###