Skip to content

Commit 5c35389

Browse files
committed
fix: Formatting
1 parent 28cce05 commit 5c35389

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

CONTRIBUTING.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,25 @@ The usual release process goes like this:
2828

2929
1. Write the integration.
3030

31-
* Instrument all application instances by default. Prefer global signals/patches instead of configuring a specific instance. Don't make the user pass anything to your integration for anything to work. Aim for zero configuration.
31+
* Instrument all application instances by default. Prefer global signals/patches instead of configuring a specific instance. Don't make the user pass anything to your integration for anything to work. Aim for zero configuration.
3232

33-
* Everybody monkeypatches. That means:
33+
* Everybody monkeypatches. That means:
3434

35-
* Make sure to think about conflicts with other monkeypatches when monkeypatching.
35+
* Make sure to think about conflicts with other monkeypatches when monkeypatching.
3636

37-
* You don't need to feel bad about it.
37+
* You don't need to feel bad about it.
3838

39-
* Avoid modifying the hub, registering a new client or the like. The user drives the client, and the client owns integrations.
39+
* Avoid modifying the hub, registering a new client or the like. The user drives the client, and the client owns integrations.
4040

41-
* Allow the user to disable the integration by changing the client. Check `Hub.current.get_integration(MyIntegration)` from within your signal handlers to see if your integration is still active before you do anything impactful (such as sending an event).
41+
* Allow the user to disable the integration by changing the client. Check `Hub.current.get_integration(MyIntegration)` from within your signal handlers to see if your integration is still active before you do anything impactful (such as sending an event).
4242

4343
2. Write the [docs](https://github.com/getsentry/sentry-docs). Answer the following questions:
4444

45-
* What does your integration do? Split in two sections: Executive summary at top and exact behavior further down.
46-
* Which version of the SDK supports which versions of the modules it hooks into?
47-
* One code example with basic setup.
45+
* What does your integration do? Split in two sections: Executive summary at top and exact behavior further down.
46+
47+
* Which version of the SDK supports which versions of the modules it hooks into?
48+
49+
* One code example with basic setup.
4850

4951
Tip: Put most relevant parts wrapped in `<!--WIZARD-->..<!--ENDWIZARD-->` tags for usage from within the Sentry UI.
5052

0 commit comments

Comments
 (0)