Skip to content

Updating AGENTS.md - #105

Open
DmitryMK wants to merge 2 commits into
mainfrom
104-update-agents-md
Open

Updating AGENTS.md#105
DmitryMK wants to merge 2 commits into
mainfrom
104-update-agents-md

Conversation

@DmitryMK

Copy link
Copy Markdown
Collaborator

Updating per meeting discussion (23 July 2026): #4 (comment)

@github-actions

Copy link
Copy Markdown

✅ Lintr – No Issues Found

All R files in code/ passed linting with no findings. 🎉


Run locally:

# Install lintr if needed
install.packages("lintr")

# Run lintr on the code directory (uses .lintr config at repo root)
library(lintr)
lintr::lint_dir("code")

@github-actions

Copy link
Copy Markdown

✅ Spelling – No Issues Found

All R files in code/ passed the spell check with no findings. 🎉


Run locally:

# Install spelling if needed
install.packages("spelling")

# Run spell check on the code directory (uses inst/WORDLIST for domain terms)
library(spelling)
r_files <- list.files("code", recursive = TRUE, full.names = TRUE, pattern = "\\.[rR]$")
ignore  <- readLines("inst/WORDLIST")
spelling::spell_check_files(r_files, ignore = ignore, lang = "en-US")

@github-actions

Copy link
Copy Markdown

✅ Styler – No Formatting Issues Found

All R files in code/ are consistently formatted. 🎉


Run locally:

# Install styler if needed
install.packages("styler")

# Check which files need formatting (dry run – no files are changed)
library(styler)
styler::style_dir("code", dry = "on")

# Apply formatting to all files
styler::style_dir("code")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant