From eb28a71756ef63d39763c81fc797da30fdcddc9d Mon Sep 17 00:00:00 2001 From: Honkazel <169346573+Honkazel@users.noreply.github.com> Date: Mon, 21 Apr 2025 23:17:15 +0500 Subject: [PATCH] clang-tidy: fix some errors (#751) I did c+p .clang-tidy from Hyprland and didn't check it for any errors, lol. Still works though Thanks to hyprwm/Hyprland#9543 --- .clang-tidy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index f0dfdf1..224864f 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,12 +1,12 @@ WarningsAsErrors: '*' HeaderFilterRegex: '.*\.hpp' -FormatStyle: file +FormatStyle: 'file' Checks: > -*, bugprone-*, -bugprone-easily-swappable-parameters, - -bugprone-forward-declararion-namespace, - -bugprone-forward-declararion-namespace, + -bugprone-forward-declaration-namespace, + -bugprone-forward-declaration-namespace, -bugprone-macro-parentheses, -bugprone-narrowing-conversions, -bugprone-branch-clone,