Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 286 Bytes

CODE_STYLE.md

File metadata and controls

22 lines (16 loc) · 286 Bytes

The code style is enforced by a .editorconfig file, inside src/

Notably, code blocks should be opened Java style:

if(blabla) {
}

NOT C# style:

if (blabla) 
{
}

Also, namespaces must be file-scoped:

namespace Spice86.Core.Emulator.blabla;