Change default build setting to disable Checkstyle enforcement

- Disable project-wide Checkstyle checks to unblock development
- Add documentation for enabling Checkstyle locally
- Fix remaining checkstyle violations in current codebase

Fixes #1669
This commit is contained in:
Soby Chacko
2024-11-04 17:30:36 -05:00
committed by Mark Pollack
parent cbef2d1600
commit 66f58d2d70
60 changed files with 405 additions and 405 deletions

View File

@@ -94,6 +94,12 @@ To check javadocs using the [javadoc:javadoc](https://maven.apache.org/plugins/m
./mvnw javadoc:javadoc -Pjavadoc
```
To build with checkstyles enabled.
Checkstyles are currently disabled, but you can enable them by doing the following:
```shell
./mvnw clean package -DskipTests -Ddisable.checks=false
```
## Project Links
* [Documentation](https://docs.spring.io/spring-ai/reference/)