Add a new built-in lint rule to the fatou linter—implement it against the single-walk dispatch, register it in the one source of truth, add TDD behavior tests (plus autofix coverage when the rule ships a fix), and wire up the snapshot-pinned generated rule…
jolars/fatou
SkillsMP has collected 6 skills from jolars/fatou. Open a skill to review its source and details.
- Latest recorded source activity
- SkillsMP catalog refreshed
- skills collected
- 6
- GitHub stars
- 49
- GitHub forks
- 2
Skills in this repository
Showing 6 of 6 collected skills.
Profile-driven performance work on Fatou's formatter, parser, or linter. Measure with bench/profile.sh first, read the phase split before the leaf list, classify the hotspot, apply the smallest matching fix, and prove median wall time moved before committing.…
Grow Fatou's own Julia formatter, one construct at a time, against hand-authored fixtures. rules::lower (crates/fatou-formatter/src/formatter/rules.rs) lowers the CST into the layout IR (ir.rs) printed by printer.rs; the gate in…
Investigate fatou's linter (and, secondarily, its parser) against a real-world Julia codebase. Clone a target repo, lint it, and triage the diagnostics for false positives, incorrect spans, and unsafe autofixes; parse failures on valid Julia are caught along…
Grow Fatou's Julia parser toward JuliaSyntax.jl using the differential oracle. The projector at crates/fatou-parser/src/parser/sexpr.rs walks the CST and emits JuliaSyntax's s-expression shape; the harness in crates/fatou-parser/tests/juliasyntax_oracle.rs…
Triage and fix fatou smoke-test regressions (idempotency, losslessness, format-error, timeout) from CI debug-format reports and linked issues.