From 16c488ed320ec0e9534b5956f720ca9caf3c9100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 14 Sep 2024 18:16:56 +0900 Subject: [PATCH] sync-server: synced file(s) with lumirlumir/lumirlumir-configs (#27) * sync-server: synced local './.vscode/settings.json' with remote './configs/.vscode/settings.json' * sync-server: synced local './.prettierignore' with remote './configs/.prettierignore' --- .prettierignore | 4 ++++ .vscode/settings.json | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.prettierignore b/.prettierignore index 76ef5c8..c83e239 100644 --- a/.prettierignore +++ b/.prettierignore @@ -19,3 +19,7 @@ package-lock.json # markdown *.md + +# cpp +*.c +*.cpp diff --git a/.vscode/settings.json b/.vscode/settings.json index 5c662ff..d4c380d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,10 +2,14 @@ "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.defaultFormatter": "esbenp.prettier-vscode", + "[c][cpp]": { + "editor.defaultFormatter": "ms-vscode.cpptools" + }, "editor.codeActionsOnSave": { "source.fixAll.eslint": "always", "source.fixAll.stylelint": "always", "source.fixAll.markdownlint": "always" }, - "stylelint.validate": ["css", "scss"] + "stylelint.validate": ["css", "scss"], + "C_Cpp.clang_format_fallbackStyle": "Google" }