Any other future supported language? #747
Replies: 1 comment
-
|
Thanks for the kind words, and good question. No plans for other languages, I'm afraid. Fallow is built on the Oxc parser ecosystem, which is JS/TS-specific, and the analysis is shaped around JavaScript/TypeScript semantics: ESM/CommonJS imports, re-export chains, There are good options elsewhere, though. The ones closest to what fallow does (covering several concerns at once across many languages) are:
If you'd rather mix focused tools, by concern:
For C++ specifically, SonarQube or CodeScene will get you the broad picture, with lizard, PMD CPD, IWYU, and cppcheck filling in the individual pieces. Worth adding, since SonarQube and CodeScene are the closest comparison for fallow itself, where it differs on a JS/TS codebase. Fallow is deterministic codebase intelligence: it reports a quality score, PR risk, complexity hotspots, duplication, architecture and boundary issues, dependency hygiene, and cleanup opportunities, all derived from one module graph in a single pass. A few things set it apart:
All three now ship MCP servers for AI agents, so that part isn't unique. The difference is that fallow's just wraps the local binary, with nothing else to provision. If you ever do touch JS/TS, would love to hear how fallow works out for you. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
This tool seems to be a very good idea and concept in our age of programming, I sadly don't use TS or JS myself and I was wondering if there was any plan to add other languages or structure (C++ for example) to the project or any similar project out there?
Beta Was this translation helpful? Give feedback.
All reactions