Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions BoostLibraryList/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GITHUB_TOKEN=<github_token here...>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

.env must not be committed to version control.

Even as a placeholder, tracking .env in git is dangerous: a developer may replace the placeholder with a real token and commit it, exposing it in history permanently. The standard convention is to commit a .env.example (or .env.template) containing only the key names with placeholder values, and add .env to .gitignore.

🔒 Recommended remediation
  1. Add .env to .gitignore:
+BoostLibraryList/.env
  1. Rename (or add) .env.example for documentation:
+GITHUB_TOKEN="<your_github_token_here>"
  1. Remove .env from tracking:
git rm --cached BoostLibraryList/.env

Also note the [ValueWithoutQuotes] lint warning from dotenv-linter: the value contains spaces and special characters (<, >, ...) and should be wrapped in double quotes per the dotenv spec.

🧰 Tools
🪛 dotenv-linter (4.0.0)

[warning] 1-1: [EndingBlankLine] No blank line at the end of the file

(EndingBlankLine)


[warning] 1-1: [ValueWithoutQuotes] This value needs to be surrounded in quotes

(ValueWithoutQuotes)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@BoostLibraryList/.env` at line 1, Remove the tracked .env file from git and
stop committing secrets: add ".env" to .gitignore, rename or add a
".env.example" (containing only the GITHUB_TOKEN key with a safe placeholder)
for documentation, and run "git rm --cached" on the tracked .env to remove it
from history; also update the placeholder value in the example to be quoted
(e.g., "GITHUB_TOKEN=\"<placeholder>\"") to satisfy dotenv-linter's
ValueWithoutQuotes warning.

71 changes: 71 additions & 0 deletions BoostLibraryList/boost-1.90.0_all_extensions_summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
All extensions (from boost-1.90.0_libraries_list.txt)
Extension -> # libraries that have at least one file with that extension:

.v2: 92
.qbk: 88
.html: 81
.png: 55
.css: 31
.adoc: 29
.xml: 27
.txt: 23
.cpp: 18
.sh: 18
.svg: 18
.gif: 17
.idx: 16
.rst: 12
.hpp: 11
.pdf: 11
.md: 11
.json: 11
.jam: 9
.manifest: 9
.jpg: 9
.py: 8
.yml: 8
.xsl: 7
.js: 6
.htm: 6
.dox: 5
.dia: 4
.bat: 3
.mml: 2
.tex: 2
.c: 2
.dot: 2
.graffle: 2
.pl: 2
.sty: 2
.ttf: 2
.ico: 2
.jpeg: 1
.mak: 1
.reno: 1
.pptx: 1
.xlsx: 1
.output: 1
.csh: 1
.fig: 1
.w: 1
.toc: 1
.hdf: 1
.tcl: 1
.ent: 1
.odp: 1
.layout: 1
.schematic: 1
.h: 1
.mac: 1
.log: 1
.in: 1
.vpp: 1
.toml: 1
.dat: 1
.jinja2: 1
.rb: 1
.mjs: 1
.odg: 1

Total unique extensions: 65
Total (library, extension) pairs: 688
19 changes: 19 additions & 0 deletions BoostLibraryList/boost-1.90.0_doc_extensions_summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Documentation extensions only (from boost-1.90.0_libraries_list.txt)
Extension -> # libraries that have at least one file with that extension:

.qbk: 88
.html: 81
.adoc: 29
.xml: 27
.txt: 23
.rst: 12
.md: 11
.xsl: 7
.htm: 6
.dox: 5
.tex: 2
.reno: 1
.ent: 1

Total unique extensions: 13
Total (library, extension) pairs: 293
346 changes: 173 additions & 173 deletions BoostLibraryList/boost-1.90.0_libraries_list.txt

Large diffs are not rendered by default.

157 changes: 157 additions & 0 deletions BoostLibraryList/boost-1.90.0_libraries_list_submodules.txt

Large diffs are not rendered by default.

215 changes: 0 additions & 215 deletions BoostLibraryList/collect_boost_libraries.py

This file was deleted.

Loading