Skip to content

Commit 1ac3dc6

Browse files
committed
fix newline character
1 parent 5347e6f commit 1ac3dc6

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*.swp
22
*.exe
33
*.out
4-
build/
4+
build/

.vscode/settings.json

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

0 commit comments

Comments
 (0)