Goal:
We want to run custom linting rules on project structure using tuist graph which will ensure that our dependencies are setup correctly. Certain dependencies are not imported in some particular modules to avoid an issue for downstream consumers etc… There are many other applications (like structuring a white label project for a specific app or generating code etc.)
Proposals:
- Middlewares - A tuist manifest awaitable handler that tuist executes before each
generate
command and the handler returns a success or throws an error. If error, tuist prints it and terminates the process
let project = Project(
....,
middleware: { graph in
/// We probably also want to import SwiftSyntax or other internal libraries
await validateGraph(graph)
}
)
-
Custom Tuist Commands - Allow consumers to implement their own custom tuist commands (something like plugins but it doesn’t need to be a separate swift package of itself)
-
Pre/Post Hooks - At callsite we can can pass the command a custom script hook that the command can call before or after the (generate) command is executed