fix newline character

This commit is contained in:
Krishna Vedala 2020-06-23 18:30:26 -04:00
parent 5347e6f87d
commit 1ac3dc6ca6
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7
2 changed files with 7 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
*.swp
*.exe
*.out
build/
build/

View File

@ -1,3 +1,7 @@
{
"C_Cpp.clang_format_style": "{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 80, AccessModifierOffset: -4 }",
}
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 80, AccessModifierOffset: -4 }",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"files.insertFinalNewline": true,
}