From 7e9ee318c2a6b79bf03630fec488505c9f972f33 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Fri, 5 Jan 2024 18:55:55 +1100 Subject: [PATCH] chore: ignore `/docs` folder (#4112) --- .gitignore | 13 +++++++------ _tools/check_deprecation.ts | 3 ++- deno.json | 3 ++- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 9ebfcf7a0..783bfd974 100644 --- a/.gitignore +++ b/.gitignore @@ -3,12 +3,13 @@ .vscode/settings.json .vim **/cov/ -/crypto/_wasm/target +crypto/_wasm/target deno.lock -/console/testdata/unicode_width_crate/target +console/testdata/unicode_width_crate/target html_cov/ cov.lcov -/http/testdata/%25A.txt -/http/testdata/file#2.txt -/http/testdata/test file.txt -/coverage/ \ No newline at end of file +http/testdata/%25A.txt +http/testdata/file#2.txt +http/testdata/test file.txt +coverage/ +docs/ \ No newline at end of file diff --git a/_tools/check_deprecation.ts b/_tools/check_deprecation.ts index 828c4cebf..d11c16234 100644 --- a/_tools/check_deprecation.ts +++ b/_tools/check_deprecation.ts @@ -17,9 +17,10 @@ const EXCLUDED_PATHS = [ "crypto/_wasm", "crypto/_fnv", "encoding/_yaml", - "encoing/_toml", + "encoding/_toml", "_tools", "_util", + "docs", ]; const ROOT = new URL("../", import.meta.url); diff --git a/deno.json b/deno.json index 371d60e8e..80ba68317 100644 --- a/deno.json +++ b/deno.json @@ -33,6 +33,7 @@ "cov", "jsonc/testdata", "front_matter/testdata", - "coverage" + "coverage", + "docs" ] }