diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-02-04 14:59:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-04 14:59:00 +0100 |
| commit | 3876cb6b8e2d0badb17e534848bd79bd3d0d8ba5 (patch) | |
| tree | 1c75db2e9cb005b123c567a9c03fce9e33c633b7 | |
| parent | c77f0a42d3de096aa0ebac4aa73449864f3afdfb (diff) | |
| parent | ed88e615c49928ba338c82d344e28557c26650e1 (diff) | |
| download | rust-3876cb6b8e2d0badb17e534848bd79bd3d0d8ba5.tar.gz rust-3876cb6b8e2d0badb17e534848bd79bd3d0d8ba5.zip | |
Rollup merge of #93551 - GuillaumeGomez:ignore-package-json, r=Mark-Simulacrum
Add package.json in gitignore It happened a few times (last one is https://github.com/rust-lang/rust/pull/93537/files#r796757998) so I think it's fine to ignore this file to prevent it to happen again in the future. :) r? ```@Mark-Simulacrum```
| -rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 87437a16fb3..ec6cb6ed2e4 100644 --- a/.gitignore +++ b/.gitignore @@ -71,6 +71,7 @@ __pycache__/ ## Node node_modules package-lock.json +package.json ## Rustdoc GUI tests src/test/rustdoc-gui/src/**.lock |
