mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
* chore: adjust prettier config, .gitignore and use taplo to format toml files This brings the plugins-workspace repository to the same code style of the main tauri repo * format toml * ignore examples gen dir * add .vscode/extensions.json * remove packageManager field * fmt * fix audit * taplo ignore permissions autogenerated files * remove create dummy dist * fix prettier workflow * install fmt in prettier workflow --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
35 lines
1018 B
TOML
35 lines
1018 B
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[default]
|
|
description = """
|
|
This set of permissions describes the what kind of
|
|
file system access the `fs` plugin has enabled or denied by default.
|
|
|
|
#### Granted Permissions
|
|
|
|
This default permission set enables read access to the
|
|
application specific directories (AppConfig, AppData, AppLocalData, AppCache,
|
|
AppLog) and all files and sub directories created in it.
|
|
The location of these directories depends on the operating system,
|
|
where the application is run.
|
|
|
|
In general these directories need to be manually created
|
|
by the application at runtime, before accessing files or folders
|
|
in it is possible.
|
|
|
|
Therefore, it is also allowed to create all of these folders via
|
|
the `mkdir` command.
|
|
|
|
#### Denied Permissions
|
|
|
|
This default permission set prevents access to critical components
|
|
of the Tauri application by default.
|
|
On Windows the webview data folder access is denied.
|
|
|
|
"""
|
|
permissions = [
|
|
"create-app-specific-dirs",
|
|
"read-app-specific-dirs-recursive",
|
|
"deny-default",
|
|
]
|