Skip to content

Commit 602ca22

Browse files
committed
apply deno fmt
1 parent bb929b2 commit 602ca22

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

runtime/fundamentals/configuration.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -588,8 +588,8 @@ Instead of specifying a permission as a boolean or array:
588588
{
589589
"permissions": {
590590
"default": {
591-
"read": true, // Simple boolean form
592-
"write": ["./data"] // Simple array form
591+
"read": true, // Simple boolean form
592+
"write": ["./data"] // Simple array form
593593
}
594594
}
595595
}
@@ -629,12 +629,14 @@ permission type:
629629
- **`allow`**: Explicitly grant access to specific resources. Can be `true` (to
630630
allow all), `false` (to allow none), or an array of specific paths/values to
631631
allow.
632-
- **`deny`**: Explicitly deny access (throw [PermissionDenied](https://docs.deno.com/api/deno/~/Deno.errors.PermissionDenied)) to specific resources, even if they would
633-
otherwise be allowed. Can be `true` (to deny all), `false` (to deny none), or
634-
an array of specific paths/values to deny.
632+
- **`deny`**: Explicitly deny access (throw
633+
[PermissionDenied](https://docs.deno.com/api/deno/~/Deno.errors.PermissionDenied))
634+
to specific resources, even if they would otherwise be allowed. Can be `true`
635+
(to deny all), `false` (to deny none), or an array of specific paths/values to
636+
deny.
635637
- **`ignore`**: (Only for `read` and `env` permissions) Silently ignore access
636-
attempts to specific resources without throwing errors. Can be `true`, `false`,
637-
or an array of specific paths/values to ignore.
638+
attempts to specific resources without throwing errors. Can be `true`,
639+
`false`, or an array of specific paths/values to ignore.
638640

639641
#### Example
640642

0 commit comments

Comments
 (0)