2a5c33323b
* Update README.md * Update README.md * Update README.md * Update README.md * Revert "Update README.md" This reverts commit 8ce4949388323dc8d81366972b350476b77a8b99. * Update README.md * Update README.md * Update README.md * Revert "Update README.md" This reverts commit 11c4655890d78728cff3ab31b8578f86ba6cbf0f. * Delete settings.json * Delete CODE_OF_CONDUCT.md * Move `.clang-format` to `cpp/` * Update README.md * update docs * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update sidebars.js
27 lines
479 B
YAML
27 lines
479 B
YAML
# Config for clang-format version 16
|
|
|
|
# Standard
|
|
BasedOnStyle: llvm
|
|
Standard: c++14
|
|
|
|
# Indentation
|
|
IndentWidth: 2
|
|
ColumnLimit: 100
|
|
|
|
# Includes
|
|
SortIncludes: true
|
|
SortUsingDeclarations: true
|
|
|
|
# Pointer and reference alignment
|
|
PointerAlignment: Left
|
|
ReferenceAlignment: Left
|
|
ReflowComments: true
|
|
|
|
# Line breaking options
|
|
BreakBeforeBraces: Attach
|
|
BreakConstructorInitializers: BeforeColon
|
|
AllowShortFunctionsOnASingleLine: Empty
|
|
IndentCaseLabels: true
|
|
NamespaceIndentation: Inner
|
|
|