Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic handling of parse errors to AST linter
refs TryGhost#163 - catch an error from the parse step and push it into the returned messages as a fatal error Invalid file `test.hbs`: ```hbs {{#primary_author}} {{name}} {{/author}} ``` Resulting message: ``` [ { "moduleId": "test.hbs", "message": "primary_author doesn't match author - 1:3", "fatal": true, "column": 3, "line": 1 } ] ```
- Loading branch information