Add clang-format style for VSCode.

CQTexperiment
Dzmitry Neviadomski 2021-02-26 23:01:25 +03:00
parent e4199694a8
commit d44d188a4f
1 changed files with 9 additions and 0 deletions

9
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"editor.formatOnSave": false,
"files.associations": {
"*.h": "objective-c",
"*.m": "objective-c"
},
"clang-format.executable": "/usr/local/bin/clang-format",
"clang-format.language.objective-c.style": "{ BasedOnStyle: Google, IndentWidth: 4, ObjCBlockIndentWidth: 4 }"
}