aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-07-26 22:58:16 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-07-26 22:58:16 +0200
commit0092b0f0750e85e1a6e97a00ae21d3d1572b17ef (patch)
treeabf5a63f3067f693c67f1ccec4c2e80465539c9e
parentbae9f1e703499ad6db9b218b75e50df39a04a252 (diff)
downloadkernel-0092b0f0750e85e1a6e97a00ae21d3d1572b17ef.tar.xz
kernel-0092b0f0750e85e1a6e97a00ae21d3d1572b17ef.zip
ide: adapt nesting patterns
-rw-r--r--.lazy.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/.lazy.lua b/.lazy.lua
index eca1d48a..be5cd0af 100644
--- a/.lazy.lua
+++ b/.lazy.lua
@@ -68,11 +68,11 @@ return {
nesting_rules = {
['cpp_under_hpp'] = {
pattern = "(.*).hpp",
- files = { "%1.cpp", "%1.tests.cpp", "%1.S" }
+ files = { "%1.cpp", "%1.tests.cpp", "%1.stress.cpp", "%1.S" }
},
['tests_under_cpp'] = {
pattern = "(.*).cpp",
- files = { "%1.tests.cpp" }
+ files = { "%1.tests.cpp", "%1.stress.cpp" }
},
},
},