Skip to content
Snippets Groups Projects
Unverified Commit dd9c94e4 authored by syuilo's avatar syuilo Committed by GitHub
Browse files

Update CONTRIBUTING.md

parent 05586314
No related branches found
No related tags found
No related merge requests found
......@@ -44,3 +44,15 @@ Stands for _**S**ervice**W**orker_.
#### Denyaize
Nyaizeを解除すること
## Code style
### Don't use `export default`
Bad:
``` ts
export default function(foo: string): string {
```
Good:
``` ts
export function something(foo: string): string {
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment