composer-git-merge-driver icon indicating copy to clipboard operation
composer-git-merge-driver copied to clipboard

Invoke composer validate after merge driver completed

Open staabm opened this issue 4 years ago • 1 comments

The readme mentions

When a merge conflict occurs where the last property of an object is removed, accepting the removed version will result in invalid syntax due to a trailing comma on the preceding property. Care should be taken to verify the syntax of the overall file and manually update accordingly.

Would it be possible that the merge driver automatically invokes composer validate after a merge to make sure (and the user aware) if the generated files contain a syntax error after merge (so we dont need to manually be aware of this edge case)?

staabm avatar Sep 06 '19 05:09 staabm

The merge driver itself would be inappropriate for this purpose, since it has already been fully executed by the time the user is manually fixing merge conflicts and where this edge case would occur. Instead, this would be best performed in a pre-commit hook or some other appropriate git hook. I think it would be in the scope of this project, if you or anyone else would like to propose a sample git hook to include in the repo which can be manually installed just like the driver itself.

balbuf avatar Jun 22 '20 19:06 balbuf