Improve inline_completions.disabled_globs in default.json (#24051)
Make sure that inline completions (Copilot, etc) are disabled for more secret globs (matches `private_files`)
This commit is contained in:
parent
d04800c329
commit
de3702bedc
2 changed files with 11 additions and 6 deletions
|
@ -382,11 +382,16 @@ There are two options to choose from:
|
|||
- Default:
|
||||
|
||||
```json
|
||||
"inline_completions": {
|
||||
"disabled_globs": [
|
||||
".env"
|
||||
]
|
||||
}
|
||||
"inline_completions": {
|
||||
"disabled_globs": [
|
||||
"**/.env*",
|
||||
"**/*.pem",
|
||||
"**/*.key",
|
||||
"**/*.cert",
|
||||
"**/*.crt",
|
||||
"**/secrets.yml"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
**Options**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue