You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
├── .env # Configure... the environment by setting the `GROQ_API_KEY` variable to provide authentication for Groq API access.
284
+
├── _descriptions.json
285
+
├── .env # Defines the GROQ_API_KEY environment variable for authentication.
285
286
├── .gitignore
286
-
├── .prettierrc.json # Configure Prettier to enforce single quotes, trailing commas (es5), an 80‑character print width, and a specific ordering of fields in package.json via the prettier‑plugin‑packagejson.
287
-
├── babel.config.js # [configure] Babel to use @babel/preset‑env with the target set to the current Node version…
288
-
├── CHANGELOG.md # Documenting the project's version history by listing each release’s features, bug fixes, and related metadata in a Keep‑a‑Changelog format.
289
-
├── CONTRIBUTING.md # Guide contributors on how to report bugs, suggest enhancements, and submit code via pull requests.
290
-
├── eslint.config.js # Configure ESLint with global browser, node, and jest globals, recommended core and Prettier rules, and custom JSON/JSONC and YAML parsers and plugins for those file types.
291
-
├── LICENSE # Granting permission to use, copy, modify, merge, publish, distribute, sublicense, and sell the software freely under the MIT License.
292
-
├── md.config.js # [Exports] a configuration object that defines default settings (like file descriptions and badge style) and registers the markdown‑magic transform modules used to generate and augment the project’s documentation.
Copy file name to clipboardExpand all lines: md.config.js
-31Lines changed: 0 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -1,36 +1,5 @@
1
1
module.exports={
2
2
transformDefaults: {
3
-
fileTreeExtended: {
4
-
descriptions: {
5
-
'.env':
6
-
'Configure... the environment by setting the `GROQ_API_KEY` variable to provide authentication for Groq API access.',
7
-
'.prettierrc.json':
8
-
'Configure Prettier to enforce single quotes, trailing commas (es5), an 80‑character print width, and a specific ordering of fields in package.json via the prettier‑plugin‑packagejson.',
9
-
'.vscode/launch.json':
10
-
'Configure launch configurations for debugging Node.js programs in VS Code.',
11
-
'babel.config.js':
12
-
'[configure] Babel to use @babel/preset‑env with the target set to the current Node version…',
13
-
'CHANGELOG.md':
14
-
"Documenting the project's version history by listing each release’s features, bug fixes, and related metadata in a Keep‑a‑Changelog format.",
15
-
'CONTRIBUTING.md':
16
-
'Guide contributors on how to report bugs, suggest enhancements, and submit code via pull requests.',
17
-
'eslint.config.js':
18
-
'Configure ESLint with global browser, node, and jest globals, recommended core and Prettier rules, and custom JSON/JSONC and YAML parsers and plugins for those file types.',
19
-
LICENSE:
20
-
'Granting permission to use, copy, modify, merge, publish, distribute, sublicense, and sell the software freely under the MIT License.',
21
-
'md.config.js':
22
-
'[Exports] a configuration object that defines default settings (like file descriptions and badge style) and registers the markdown‑magic transform modules used to generate and augment the project’s documentation.',
0 commit comments