Format default settings (#11985)
This PR formats `default.json`, as it had gotten out-of-sync with Prettier. Release Notes: - N/A
This commit is contained in:
parent
483a735e03
commit
b93e564a78
1 changed files with 10 additions and 3 deletions
|
@ -103,7 +103,14 @@
|
||||||
// Hide the values of in variables from visual display in private files
|
// Hide the values of in variables from visual display in private files
|
||||||
"redact_private_values": false,
|
"redact_private_values": false,
|
||||||
// Globs to match against file paths to determine if a file is private.
|
// Globs to match against file paths to determine if a file is private.
|
||||||
"private_files": ["**/.env*", "**/*.pem", "**/*.key", "**/*.cert", "**/*.crt", "**/secrets.yml"],
|
"private_files": [
|
||||||
|
"**/.env*",
|
||||||
|
"**/*.pem",
|
||||||
|
"**/*.key",
|
||||||
|
"**/*.cert",
|
||||||
|
"**/*.crt",
|
||||||
|
"**/secrets.yml"
|
||||||
|
],
|
||||||
// Whether to use additional LSP queries to format (and amend) the code after
|
// Whether to use additional LSP queries to format (and amend) the code after
|
||||||
// every "trigger" symbol input, defined by LSP server capabilities.
|
// every "trigger" symbol input, defined by LSP server capabilities.
|
||||||
"use_on_type_format": true,
|
"use_on_type_format": true,
|
||||||
|
@ -802,7 +809,7 @@
|
||||||
//
|
//
|
||||||
// Supported URI scheme: `http`, `https`, `socks4`, `socks4a`, `socks5`,
|
// Supported URI scheme: `http`, `https`, `socks4`, `socks4a`, `socks5`,
|
||||||
// `socks5h`. `http` will be used when no scheme is specified.
|
// `socks5h`. `http` will be used when no scheme is specified.
|
||||||
//
|
//
|
||||||
// By default no proxy will be used, or Zed will try get proxy settings from
|
// By default no proxy will be used, or Zed will try get proxy settings from
|
||||||
// environment variables.
|
// environment variables.
|
||||||
//
|
//
|
||||||
|
@ -810,4 +817,4 @@
|
||||||
// - "proxy" = "socks5://localhost:10808"
|
// - "proxy" = "socks5://localhost:10808"
|
||||||
// - "proxy" = "http://127.0.0.1:10809"
|
// - "proxy" = "http://127.0.0.1:10809"
|
||||||
"proxy": null
|
"proxy": null
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue