doc/bounty/bounty-quality-standards.md
var: Use var for variable declarations consistently. See rationale below.varWe have chosen to use var consistently in our codebase for the following reasons:
var reduces visual clutter and makes the code cleaner and more readable. It helps avoid redundant type information, especially when the type is already apparent from the right-hand side of the declaration.var across the codebase promotes uniformity and reduces the mental load on developers. It simplifies refactoring because changes to the type do not require updating the variable declaration.var, developers can focus on the logic and functionality of the code rather than getting bogged down by type details. This is particularly beneficial in complex expressions and LINQ queries where the type is often verbose and less important than the expression itself.These points align with the insights from Chris Schaller's blog post "To var or not to var," which emphasizes that using var can lead to more maintainable and readable code in the context of modern development environments.