Your company uses Azure DevOps.
You need to recommend a method to validate whether the code meets the company's quality standards and code review standards.
What should you recommend implementing in Azure DevOps?
Click on the arrows to vote for the correct answer
A. B. C. D.C
Branch policies help teams protect their important branches of development. Policies enforce your team's code quality and change management standards.
https://docs.microsoft.com/en-us/azure/devops/repos/git/branch-policies?view=azure-devops&viewFallbackFrom=vstsTo validate code quality and ensure that code review standards are met, you can implement branch policies in Azure DevOps. Branch policies are a set of rules that you define to govern the quality of code changes to a specific branch. They can be used to enforce a variety of requirements, such as requiring code reviews, build validation, and other types of tests.
To implement branch policies, follow these steps:
Once the policies are set up, any code changes that are submitted to the branch will be subject to the policies you've defined. If a change doesn't meet the criteria set by the policies, it will be rejected and the developer will need to address the issues before the change can be merged.
In summary, to validate code quality and ensure that code review standards are met in Azure DevOps, you should recommend implementing branch policies.