### Configure Git Hook for Linting Source: https://github.com/team-dodn/spring-boot-java-template/blob/main/README.md This setting configures Git to run lint checks on every commit. It sets the core.hookspath to the .githooks directory, ensuring that pre-commit hooks are executed. ```Shell $ git config core.hookspath .githooks ``` -------------------------------- ### Configure IntelliJ IDEA for Gradle Test Execution Source: https://github.com/team-dodn/spring-boot-java-template/blob/main/README.md This setting in IntelliJ IDEA configures the IDE to use its own test runner for Gradle tests. This can make it easier and faster to run individual test cases directly from the IDE. ```Configuration // Gradle Build and run with IntelliJ IDEA Build, Execution, Deployment > Build Tools > Gradle > Run tests using > IntelliJ IDEA ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.