|
1 | | -# Test coverage reports |
2 | | -.coverage/ |
3 | | - |
4 | | -# macOS system files |
5 | | -.DS_Store |
6 | | - |
7 | | -# Environment variables (contains secrets) |
8 | | -.env |
9 | | - |
10 | | -# ESLint cache for faster linting |
11 | | -.eslintcache |
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 |
26 | | -.node-version |
27 | | - |
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 | | -# Accidentally committed file that should be ignored |
41 | | -assets/images/help/writing/unordered-list-rendered (1).png |
42 | | - |
43 | | -# Old broken link checker output |
44 | | -blc_output.log |
45 | | - |
46 | | -# Old internal broken link checker output |
47 | | -blc_output_internal.log |
48 | | - |
49 | | -# Old broken links report |
50 | | -broken_links.md |
51 | | - |
52 | | -# Directories from the docs-early-access repo. Used for symlinks in local docs-internal checkouts. Don't add trailing slashes. |
53 | | -content/early-access |
54 | | -data/early-access |
55 | | -assets/images/early-access |
56 | | - |
57 | | -# Test coverage reports |
58 | | -coverage/ |
59 | | - |
60 | | -# Cloned for Elasticsearch indexing data |
61 | | -docs-internal-data/ |
62 | | - |
63 | | -# External link checker cache database |
64 | | -external-link-checker-db.json |
65 | | - |
66 | | -# Historical redirects cache (legacy) |
67 | | -lib/redirects/.redirects-cache*.json |
68 | | - |
69 | | -# Script execution logs |
70 | | -logs/ |
71 | | - |
72 | | -# GitHub Models API descriptions |
73 | | -models-gateway/ |
74 | | - |
75 | | -# Next.js TypeScript environment definitions |
76 | | -next-env.d.ts |
77 | | - |
78 | | -# Node.js dependencies |
79 | | -node_modules/ |
80 | | - |
81 | | -# Background process output |
82 | | -nohup.out |
83 | | - |
84 | | -# NPM debug logs |
85 | | -npm-debug.log |
86 | | - |
87 | | -# Playwright test reports |
88 | | -playwright-report/ |
89 | | - |
90 | | -# Playwright browser cache |
91 | | -playwright/.cache/ |
92 | | - |
93 | | -# REST API OpenAPI descriptions |
94 | | -rest-api-description/ |
95 | | - |
96 | | -# CodeQL CLI documentation source |
97 | | -semmle-code/ |
98 | | - |
99 | | -# Development table of contents static HTML files |
100 | | -src/dev-toc/static/ |
101 | | - |
102 | | -# Playwright test result artifacts |
103 | | -test-results/ |
104 | | - |
105 | | -# Temporary data files |
106 | | -tmp/ |
107 | | - |
108 | | -# Localized content from translation repositories |
109 | | -translations/ |
| 1 | +# See https://www.dartlang.org/guides/libraries/private-files |
| 2 | + |
| 3 | +# Files and directories created by pub |
| 4 | +.dart_tool/ |
| 5 | +.packages |
| 6 | +build/ |
| 7 | +# If you're building an application, you may want to check-in your pubspec.lock |
| 8 | +pubspec.lock |
| 9 | + |
| 10 | +# Directory created by dartdoc |
| 11 | +# If you don't generate documentation locally you can remove this line. |
| 12 | +doc/api/ |
| 13 | + |
| 14 | +# dotenv environment variables file |
| 15 | +.env* |
| 16 | + |
| 17 | +# Avoid committing generated Javascript files: |
| 18 | +*.dart.js |
| 19 | +# Produced by the --dump-info flag. |
| 20 | +*.info.json |
| 21 | +# When generated by dart2js. Don't specify *.js if your |
| 22 | +# project includes source files written in JavaScript. |
| 23 | +*.js |
| 24 | +*.js_ |
| 25 | +*.js.deps |
| 26 | +*.js.map |
| 27 | + |
| 28 | +.flutter-plugins |
| 29 | +.flutter-plugins-dependencies |
0 commit comments