chore: add noNestedTernary biome rule (warn) (#168)

- Enforce no nested ternary expressions via biome linter
- No existing code violations found
- Complements clarity-over-brevity coding guideline
This commit is contained in:
Daniel Volz
2026-02-13 19:32:17 +01:00
committed by GitHub
parent 7122121c12
commit 82d8bec91b
+2 -1
View File
@@ -21,7 +21,8 @@
"style": {
"noNonNullAssertion": "off",
"useConst": "error",
"noParameterAssign": "off"
"noParameterAssign": "off",
"noNestedTernary": "warn"
},
"correctness": {
"noUnusedVariables": "warn",