Code organization and API naming convention.
aofei opened this issue · 0 comments
aofei commented
Writing Format
- 100 characters per line.
- Use
<Tab>
to indentation. - A
<Tab>
occupies 8 spaces. - Use
//
to comment.
Code Organization
- Use
gofmt
to format all go files beforegit commit
.
Testing
- Use
go test
to test whether the Air can server properly.