Skip to content

SimpleReport Style Guide

emmastephenson edited this page Feb 10, 2022 · 15 revisions

This style guide is very much a WIP!

Java

Whenever possible, avoid throwing a generic Exception in the method signature, preferring to throw the explicit Exception type.

No: private String getUserStatus(UUID id) throws Exception {}

Yes: private String getUserStatus(UUID id) throws IllegalStateException {}

Local development

Setup

How to

Development process and standards

Oncall

Technical resources

How-to guides

Environments/Azure

Misc

?

Clone this wiki locally