mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
gitignore
This commit is contained in:
39
.clang-format
Normal file
39
.clang-format
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
Language: Cpp
|
||||||
|
BasedOnStyle: LLVM
|
||||||
|
UseTab: Never
|
||||||
|
IndentWidth: 4
|
||||||
|
ColumnLimit: 140
|
||||||
|
TabWidth: 4
|
||||||
|
#BreakBeforeBraces: Custom
|
||||||
|
BraceWrapping:
|
||||||
|
AfterControlStatement: false
|
||||||
|
AfterFunction: false
|
||||||
|
AfterClass: true
|
||||||
|
AfterEnum: true
|
||||||
|
BeforeElse: false
|
||||||
|
ReflowComments: false
|
||||||
|
AlignAfterOpenBracket: Align # If true, horizontally aligns arguments after an open bracket.
|
||||||
|
AlignConsecutiveAssignments: true # This will align the assignment operators of consecutive lines
|
||||||
|
AlignConsecutiveDeclarations: true # This will align the declaration names of consecutive lines
|
||||||
|
AlignTrailingComments: true
|
||||||
|
AllowAllParametersOfDeclarationOnNextLine: false
|
||||||
|
AllowShortBlocksOnASingleLine: false
|
||||||
|
AllowShortFunctionsOnASingleLine: false
|
||||||
|
AllowShortIfStatementsOnASingleLine: false
|
||||||
|
AllowShortLoopsOnASingleLine: false
|
||||||
|
#AlwaysBreakAfterReturnType: TopLevel
|
||||||
|
AlwaysBreakTemplateDeclarations: true # If true, always break after the template<...> of a template declaration
|
||||||
|
BinPackArguments: false
|
||||||
|
BinPackParameters: false
|
||||||
|
BreakBeforeBinaryOperators: NonAssignment
|
||||||
|
BreakConstructorInitializersBeforeComma: true # Always break constructor initializers before commas and align the commas with the colon.
|
||||||
|
ExperimentalAutoDetectBinPacking: false
|
||||||
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
||||||
|
MaxEmptyLinesToKeep: 4
|
||||||
|
PenaltyBreakBeforeFirstCallParameter: 200
|
||||||
|
PenaltyExcessCharacter: 10
|
||||||
|
PointerAlignment: Middle
|
||||||
|
SpaceAfterCStyleCast: false
|
||||||
|
SpaceBeforeAssignmentOperators: true
|
||||||
|
SpacesInCStyleCastParentheses: false
|
||||||
|
SpacesInParentheses: false
|
||||||
17
.gitignore
vendored
17
.gitignore
vendored
@@ -1,18 +1,9 @@
|
|||||||
.pioenvs
|
.pio*
|
||||||
.piolibdeps
|
|
||||||
.clang_complete
|
.clang_complete
|
||||||
.gcc-flags.json
|
.gcc-flags.json
|
||||||
.vscode/c_cpp_properties.json
|
.vscode
|
||||||
.vscode/launch.json
|
.env
|
||||||
.vscode/*.db
|
|
||||||
.vscode/.browse.c_cpp.db*
|
|
||||||
platformio.ini
|
platformio.ini
|
||||||
lib/readme.txt
|
lib/readme.txt
|
||||||
.vscode/settings.json
|
|
||||||
.vscode/extensions.json
|
|
||||||
.vscode/BROWSE.VC.DB-wal
|
|
||||||
.vscode/BROWSE.VC.DB-shm
|
|
||||||
lib/readme.txt
|
|
||||||
extra_script.py
|
|
||||||
.travis.yml
|
.travis.yml
|
||||||
.clang-format
|
*.py
|
||||||
Reference in New Issue
Block a user