webmat
Version:
Formats your entire project with clang-format
26 lines • 636 B
JSON
{
"include": [
"**/*.js",
"**/*.ts",
"**/*.html"
],
"exclude": [
"**/*.min.js",
"**/*.d.ts",
"lib/**/*",
"node_modules/**/*",
"bower_components/**/*"
],
"style": {
"BasedOnStyle": "Google",
"AlignAfterOpenBracket": "AlwaysBreak",
"AllowAllParametersOfDeclarationOnNextLine": false,
"AllowShortBlocksOnASingleLine": false,
"AllowShortCaseLabelsOnASingleLine": false,
"AllowShortFunctionsOnASingleLine": "None",
"AllowShortIfStatementsOnASingleLine": false,
"AllowShortLoopsOnASingleLine": false,
"BinPackArguments": false,
"BinPackParameters": false
}
}