treewide: Reformat with nixfmt

This commit is contained in:
traxys 2024-05-05 19:39:35 +02:00
parent c6281260dc
commit 62f32bfc71
459 changed files with 28139 additions and 26377 deletions

View file

@ -14,7 +14,12 @@
FIX = {
icon = " ";
color = "error";
alt = ["FIXME" "BUG" "FIXIT" "ISSUE"];
alt = [
"FIXME"
"BUG"
"FIXIT"
"ISSUE"
];
signs = false;
};
TODO = {
@ -28,21 +33,32 @@
WARN = {
icon = " ";
color = "warning";
alt = ["WARNING" "XXX"];
alt = [
"WARNING"
"XXX"
];
};
PERF = {
icon = " ";
alt = ["OPTIM" "PERFORMANCE" "OPTIMIZE"];
alt = [
"OPTIM"
"PERFORMANCE"
"OPTIMIZE"
];
};
NOTE = {
icon = " ";
color = "hint";
alt = ["INFO"];
alt = [ "INFO" ];
};
TEST = {
icon = " ";
color = "test";
alt = ["TESTING" "PASSED" "FAILED"];
alt = [
"TESTING"
"PASSED"
"FAILED"
];
};
};
@ -63,16 +79,36 @@
pattern = ''.*<(KEYWORDS)\s*:'';
commentsOnly = true;
maxLineLen = 400;
exclude = [];
exclude = [ ];
};
colors = {
error = ["DiagnosticError" "ErrorMsg" "#DC2626"];
warning = ["DiagnosticWarn" "WarningMsg" "#FBBF24"];
info = ["DiagnosticInfo" "#2563EB"];
hint = ["DiagnosticHint" "#10B981"];
default = ["Identifier" "#7C3AED"];
test = ["Identifier" "#FF00FF"];
error = [
"DiagnosticError"
"ErrorMsg"
"#DC2626"
];
warning = [
"DiagnosticWarn"
"WarningMsg"
"#FBBF24"
];
info = [
"DiagnosticInfo"
"#2563EB"
];
hint = [
"DiagnosticHint"
"#10B981"
];
default = [
"Identifier"
"#7C3AED"
];
test = [
"Identifier"
"#FF00FF"
];
};
search = {