|
1 |
| -.search-cache |
| 1 | +# Test coverage reports |
| 2 | +.coverage/ |
| 3 | + |
| 4 | +# macOS system files |
2 | 5 | .DS_Store
|
| 6 | + |
| 7 | +# Environment variables (contains secrets) |
3 | 8 | .env
|
4 |
| -.vscode/settings.json |
5 |
| -.idea/ |
6 |
| -/node_modules/ |
7 |
| -npm-debug.log |
8 |
| -coverage/ |
9 |
| -/assets/images/early-access |
10 |
| -/content/early-access |
11 |
| -/data/early-access |
12 |
| -/src/dev-toc/static |
13 |
| -.next |
| 9 | + |
| 10 | +# ESLint cache for faster linting |
14 | 11 | .eslintcache
|
15 |
| -*.tsbuildinfo |
16 |
| -/translations/ |
| 12 | + |
| 13 | +# JetBrains IDE files |
| 14 | +.idea/ |
| 15 | + |
| 16 | +# Tracks package-lock.json installation state |
| 17 | +.installed.package-lock.json |
| 18 | + |
| 19 | +# Linkinator full site link check results |
| 20 | +.linkinator/ |
| 21 | + |
| 22 | +# Next.js build output |
| 23 | +.next/ |
| 24 | + |
| 25 | +# Node.js version specification |
17 | 26 | .node-version
|
18 |
| -.linkinator/full.log |
19 |
| -next-env.d.ts |
20 |
| -nohup.out |
21 | 27 |
|
22 |
| -# blc: broken link checker |
| 28 | +# Precomputed page info cache (brotli compressed) |
| 29 | +.pageinfo-cache.json.br |
| 30 | + |
| 31 | +# getRemoteJSON() disk cache for archived content |
| 32 | +.remotejson-cache/ |
| 33 | + |
| 34 | +# VS Code workspace settings |
| 35 | +.vscode/settings.json |
| 36 | + |
| 37 | +# TypeScript incremental build info |
| 38 | +*.tsbuildinfo |
| 39 | + |
| 40 | +# Early access images from docs-early-access repo |
| 41 | +assets/images/early-access/ |
| 42 | + |
| 43 | +# Accidentally committed file that should be ignored |
| 44 | +assets/images/help/writing/unordered-list-rendered (1).png |
| 45 | + |
| 46 | +# Old broken link checker output |
23 | 47 | blc_output.log
|
| 48 | + |
| 49 | +# Old internal broken link checker output |
24 | 50 | blc_output_internal.log
|
| 51 | + |
| 52 | +# Old broken links report |
25 | 53 | broken_links.md
|
26 |
| -# This one is purely for historical reasons because so many people might |
27 |
| -# still have these files on their disk. |
28 |
| -lib/redirects/.redirects-cache*.json |
29 | 54 |
|
| 55 | +# Early access content from docs-early-access repo |
| 56 | +content/early-access/ |
| 57 | + |
| 58 | +# Test coverage reports |
| 59 | +coverage/ |
| 60 | + |
| 61 | +# Early access data from docs-early-access repo |
| 62 | +data/early-access/ |
30 | 63 |
|
31 |
| -# Logs from scripts |
32 |
| -*/logs/ |
| 64 | +# Cloned for Elasticsearch indexing data |
| 65 | +docs-internal-data/ |
| 66 | + |
| 67 | +# External link checker cache database |
33 | 68 | external-link-checker-db.json
|
34 | 69 |
|
35 |
| -# Playwright related |
36 |
| -/test-results/ |
37 |
| -/playwright-report/ |
38 |
| -/playwright/.cache/ |
| 70 | +# Historical redirects cache (legacy) |
| 71 | +lib/redirects/.redirects-cache*.json |
39 | 72 |
|
40 |
| -# Automated content source |
41 |
| -rest-api-description |
42 |
| -semmle-code |
43 |
| -models-gateway |
| 73 | +# Script execution logs |
| 74 | +logs/ |
44 | 75 |
|
45 |
| -.installed.package-lock.json |
46 |
| -assets/images/help/writing/unordered-list-rendered (1).png |
| 76 | +# GitHub Models API descriptions |
| 77 | +models-gateway/ |
47 | 78 |
|
48 |
| -# Used by getRemoteJSON() |
49 |
| -.remotejson-cache/ |
| 79 | +# Next.js TypeScript environment definitions |
| 80 | +next-env.d.ts |
50 | 81 |
|
51 |
| -# Used by precompute-pageinfo |
52 |
| -.pageinfo-cache.json.br |
| 82 | +# Node.js dependencies |
| 83 | +node_modules/ |
53 | 84 |
|
54 |
| -# Cloned and used for indexing Elasticsearch data |
55 |
| -docs-internal-data/ |
| 85 | +# Background process output |
| 86 | +nohup.out |
| 87 | + |
| 88 | +# NPM debug logs |
| 89 | +npm-debug.log |
| 90 | + |
| 91 | +# Playwright test reports |
| 92 | +playwright-report/ |
56 | 93 |
|
57 |
| -# For intermediate data (like scraping for Elasticsearch indexing) |
| 94 | +# Playwright browser cache |
| 95 | +playwright/.cache/ |
| 96 | + |
| 97 | +# REST API OpenAPI descriptions |
| 98 | +rest-api-description/ |
| 99 | + |
| 100 | +# CodeQL CLI documentation source |
| 101 | +semmle-code/ |
| 102 | + |
| 103 | +# Development table of contents static HTML files |
| 104 | +src/dev-toc/static/ |
| 105 | + |
| 106 | +# Playwright test result artifacts |
| 107 | +test-results/ |
| 108 | + |
| 109 | +# Temporary data files |
58 | 110 | tmp/
|
| 111 | + |
| 112 | +# Localized content from translation repositories |
| 113 | +translations/ |
0 commit comments