All checks were successful
CI / lint (pull_request) Successful in 1m6s
CI / build (pull_request) Successful in 51s
CI / unit (pull_request) Successful in 59s
CI / frontend (pull_request) Successful in 2m27s
CI / mutation (pull_request) Successful in 3m55s
CI / verify-stack (pull_request) Successful in 5m43s
The imported Nx .editorconfig applied a global 2-space indent + charset=utf-8 to all files, so dotnet format flagged every 4-space C# line and the BOM'd EF migration. Scope it: [*.cs] keeps 4-space, and the global charset rule is dropped (utf-8 is the default; the BOM'd generated migration is left alone). Frontend files stay 2-space. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
416 B
INI
18 lines
416 B
INI
# Editor configuration, see http://editorconfig.org
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 2
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
# .NET sources use 4-space indent (dotnet format enforces this). The 2-space default
|
|
# above is for the frontend (TS/HTML/CSS/JSON); C# keeps the .NET convention.
|
|
[*.cs]
|
|
indent_size = 4
|
|
|
|
[*.md]
|
|
max_line_length = off
|
|
trim_trailing_whitespace = false
|