From 0964470f670d99227e831590fa3d76e33f0b49b5 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Mon, 17 Nov 2025 18:25:16 +0900 Subject: [PATCH] remove --- .clang-format | 21 --------------------- format.sh | 3 --- 2 files changed, 24 deletions(-) delete mode 100644 .clang-format delete mode 100755 format.sh diff --git a/.clang-format b/.clang-format deleted file mode 100644 index f4cf343..0000000 --- a/.clang-format +++ /dev/null @@ -1,21 +0,0 @@ ---- -# $Id: .clang-format 567 2025-11-02 00:00:24Z nishi $ -Language: Cpp -UseTab: Always -TabWidth: 8 -AlignConsecutiveAssignments: - Enabled: true -AlignConsecutiveDeclarations: - Enabled: true -IndentWidth: 8 -PointerAlignment: Left -ColumnLimit: 0 -AllowShortIfStatementsOnASingleLine: Always -AllowShortBlocksOnASingleLine: Never -AllowShortFunctionsOnASingleLine: Empty -AllowShortLoopsOnASingleLine: true -SpaceBeforeParens: Never -AlignEscapedNewlines: DontAlign -SortIncludes: false -AllowShortEnumsOnASingleLine: false -#IndentPPDirectives: AfterHash diff --git a/format.sh b/format.sh deleted file mode 100755 index 393b0a0..0000000 --- a/format.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -DIRS="include src" -clang-format --verbose -i `find $DIRS -name "*.c" -or -name "*.h"`