Skip to content

Commit

Permalink
Work on the contribution guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
ZILtoid1991 committed May 30, 2024
1 parent 993fecd commit 3ad410b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ try {
}
```

Maximum line length is 120 characters, except for single-line comments at the end of a line, which should be used sparingly, and if too long (80 characters or more), broken into multiple lines.
Single line `if else` and `case ...: ... break;` statements without braces are allowed only if they can fit into a single 120 character line, they're the top statement in the given scope and further `else if` statements in the same chain do not contain braces for any reason.

Maximum line length is 120 characters excluding tabs, except for single-line comments at the end of a line, which should be used sparingly, and if too long (80 characters or more), broken into multiple lines. When breaking into multiple lines, try to keep function calls and type constructors in a single line.

### Code outside of BSL licenses

Expand Down

0 comments on commit 3ad410b

Please sign in to comment.