chore: ignore /docs folder (#4112)

This commit is contained in:
Asher Gomez 2024-01-05 18:55:55 +11:00 committed by GitHub
parent 8bf059a1bf
commit 7e9ee318c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 8 deletions

13
.gitignore vendored
View File

@ -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/
http/testdata/%25A.txt
http/testdata/file#2.txt
http/testdata/test file.txt
coverage/
docs/

View File

@ -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);

View File

@ -33,6 +33,7 @@
"cov",
"jsonc/testdata",
"front_matter/testdata",
"coverage"
"coverage",
"docs"
]
}