Updating AGENTS.md - #105
Open
DmitryMK wants to merge 2 commits into
Open
Conversation
✅ Lintr – No Issues FoundAll R files in 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") |
✅ Spelling – No Issues FoundAll R files in 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") |
✅ Styler – No Formatting Issues FoundAll R files in 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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updating per meeting discussion (23 July 2026): #4 (comment)