Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
589cfb7
Delete README.md
hyperpolymath Dec 4, 2025
4452dc8
docs: Rename additional documentation files to AsciiDoc format
claude Nov 29, 2025
7bb0632
docs: Complete Markdown to AsciiDoc conversion
claude Nov 29, 2025
a4d3165
feat: Create massive justfile with 128 recipes
claude Nov 29, 2025
7b8358c
feat: Eliminate TypeScript/Node.js, add Git hooks and Salt Robot
claude Nov 29, 2025
ad1c05e
feat: Add Nickel config, WASM modules, ReScript tests, and GitHub pro…
claude Nov 29, 2025
b7dfe01
docs: Add RSR v3.0 - LLM-optimized canonical standard
claude Nov 29, 2025
27b3dc8
feat: Add RSR badges and canonical v3.0 specification
claude Nov 29, 2025
1083903
feat: Implement post-quantum cryptography and comprehensive tests
claude Nov 29, 2025
234d0ab
chore: Clean up WASM module structure
claude Nov 29, 2025
6369718
fix: Remove TypeScript GenType config from bsconfig.json
claude Dec 1, 2025
98b5a55
fix: Pin all GitHub Actions to full commit SHAs
claude Dec 1, 2025
7cb151a
fix: Configure Dependabot for automated SHA pinning
claude Dec 1, 2025
ad624bc
fix: Pin all GitHub Actions to verified commit SHAs
claude Dec 1, 2025
1dac485
fix: Correct GitHub Actions SHAs and ReScript installation
claude Dec 1, 2025
1b390b5
fix: Add required toolchain parameter to rust-toolchain action
claude Dec 1, 2025
271322c
fix: Add .gitattributes for GitHub Linguist language detection
claude Dec 1, 2025
4d17dbb
fix: Exclude ALL TypeScript files from GitHub Linguist
claude Dec 4, 2025
92b682e
feat: Add JavaScript entry point (replaces main.ts)
claude Dec 4, 2025
de0c2ae
ci(deps): Bump denoland/setup-deno from 1.1.4 to 2.0.3
dependabot[bot] Dec 4, 2025
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
62 changes: 62 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Fogbinder Language Classification for GitHub Linguist
# RSR Rhodium Standard Repository - ReScript + WASM + Deno

# ⛔ NO TYPESCRIPT - Exclude ALL .ts/.tsx files (including git history)
# RSR Rhodium R13 mandates ZERO TypeScript in codebase
*.ts linguist-vendored=true
*.tsx linguist-vendored=true

# ReScript files (primary language)
*.res linguist-language=ReScript
*.resi linguist-language=ReScript

# ReScript generated JavaScript files (exclude from stats)
*.bs.js linguist-generated=true

# TLA+ formal verification specs
*.tla linguist-language=TLA

# Rust WASM modules
*.rs linguist-language=Rust

# Deno configuration
deno.json linguist-language=JSON
deno.jsonc linguist-language=JSONC

# ReScript configuration
bsconfig.json linguist-language=JSON

# Nickel configuration language
*.ncl linguist-language=Nickel

# Justfile build system
justfile linguist-language=Just

# AsciiDoc documentation
*.adoc linguist-documentation=true linguist-language=AsciiDoc

# Markdown (exceptions only)
*.md linguist-documentation=true

# Exclude from language stats
.github/workflows/*.yml linguist-vendored=true
docs/* linguist-documentation=true
examples/* linguist-documentation=true
benchmarks/* linguist-vendored=true
scripts/* linguist-vendored=true

# Git LFS (for large assets if needed)
*.wasm filter=lfs diff=lfs merge=lfs -text

# Line endings
* text=auto
*.res text eol=lf
*.resi text eol=lf
*.rs text eol=lf
*.js text eol=lf
*.json text eol=lf
*.adoc text eol=lf
*.md text eol=lf
*.sh text eol=lf
*.yml text eol=lf
*.tla text eol=lf
32 changes: 24 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "" # See documentation for possible values
directory: "/" # Location of package manifests
# Keep GitHub Actions up to date with commit SHAs
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
labels:
- "dependencies"
- "github-actions"
commit-message:
prefix: "ci"
include: "scope"
open-pull-requests-limit: 10

# Keep Cargo dependencies up to date (WASM modules)
- package-ecosystem: "cargo"
directory: "/src/wasm"
schedule:
interval: "daily"
interval: "weekly"
labels:
- "dependencies"
- "rust"
commit-message:
prefix: "deps"
include: "scope"
open-pull-requests-limit: 5
Loading
Loading