Set up Development Environment for Contributing
mainTo contribute to QLExpress, follow these steps to prepare your local environment:
- Generate Antlr4 runtime code: Run
mvn compilein the project root. - Configure automatic code formatting: Create a
.git/hooks/pre-commitfile to ensurespotlessis applied before every commit:
#!/bin/sh
mvn spotless:apply
git add -u
exit 0- Run tests: Use
mvn testto verify your changes locally.