diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-15 07:42:27 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-15 07:42:27 +0000 |
commit | 67e299f9cf5807e92cf1e398511a5d5377f9dd84 (patch) | |
tree | 7eff8b87b5a1120f06d74476644cffbd54d49223 | |
parent | 34f7b5383af61d8896c97e407888cfde2ba35350 (diff) | |
parent | c256eba21b5bab955721b00cdab72b6302484f7f (diff) |
Merge #6885
6885: Add !language-configuration.json to .vscodeignore r=matklad a=bryangingechen
#6840 added a `language-configuration.json` file to `package.json`, but because `.vscodeignore` was not updated, this file was not uploaded when the extension was published, leading to constant errors in the VS Code dev tools console:
```
[Extension Host] stack trace: Error: ENOENT: no such file or directory, open '/Users/-/.vscode/extensions/matklad.rust-analyzer-0.2.416/language-configuration.json'
```
Co-authored-by: Bryan Gin-ge Chen <[email protected]>
-rw-r--r-- | editors/code/.vscodeignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/.vscodeignore b/editors/code/.vscodeignore index 7149ab799..5096ce4da 100644 --- a/editors/code/.vscodeignore +++ b/editors/code/.vscodeignore | |||
@@ -1,4 +1,5 @@ | |||
1 | ** | 1 | ** |
2 | !language-configuration.json | ||
2 | !out/src/main.js | 3 | !out/src/main.js |
3 | !package.json | 4 | !package.json |
4 | !package-lock.json | 5 | !package-lock.json |