root = true

[*]
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

[*.cs]
indent_style = space
indent_size = 4

# Ressourcer, der ejer IDisposable-objekter, skal frigives korrekt.
dotnet_diagnostic.CA2000.severity = warning

# Variable og parametre skal bruge camelCase.
dotnet_naming_rule.variables_should_be_camel_case.severity = warning
dotnet_naming_rule.variables_should_be_camel_case.symbols = variables
dotnet_naming_rule.variables_should_be_camel_case.style = camel_case
dotnet_naming_symbols.variables.applicable_kinds = local, parameter
dotnet_naming_style.camel_case.capitalization = camel_case
