Add redis parser + test

This commit is contained in:
Roman Gershman 2021-11-16 11:39:02 +02:00
parent 2bce379341
commit f2bc27e283
9 changed files with 958 additions and 1 deletions

19
.clang-format Normal file
View file

@ -0,0 +1,19 @@
# ---
# We'll use defaults from the Google style, but with 2 columns indentation.
BasedOnStyle: Google
IndentWidth: 2
ColumnLimit: 100
---
Language: Cpp
AllowShortLoopsOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AlwaysBreakTemplateDeclarations: false
ConstructorInitializerAllOnOneLineOrOnePerLine: false
DerivePointerAlignment: false
PointerAlignment: Left
BasedOnStyle: Google
ColumnLimit: 100
---
Language: Proto
BasedOnStyle: Google