Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish committed Dec 8, 2023
1 parent 46fcdab commit 034909a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@

```javascript
// Import from the Deno registry
import * as Sentry from "https://deno.land/x/sentry/index.mjs";

// or import from npm registry
import * as Sentry from 'npm:@sentry/deno';
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: '___PUBLIC_DSN___',
dsn: "___PUBLIC_DSN___",
// ...
});
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import * as Sentry from "https://deno.land/x/sentry/index.mjs";

// or import from npm registry
import * as Sentry from 'npm:@sentry/deno';
import * as Sentry from "npm:@sentry/deno";

Sentry.init({
dsn: "___PUBLIC_DSN___",
Expand Down

0 comments on commit 034909a

Please sign in to comment.