googlemaps / react-native-navigation-sdk

Apache License 2.0
17 stars 3 forks source link

chore: add support to obj-c and java formatting #240

Closed jokerttu closed 5 days ago

jokerttu commented 2 weeks ago

Adds support for formatting and checking the formatting for Java and Objective-C files. Formatting is checked as part of the CI and lefthook pre-commit hooks. Added helper scripts

format:

./scripts/format-java.sh
./scripts/format-objc.sh

check:

./scripts/format-java.sh --check
./scripts/format-objc.sh --check

Uses google-java-format for Java files and clang-format -style=Google for Objective-C files.

jokerttu commented 2 weeks ago

This PR is missing formatted files, and will fail on check-formatting tests. After #239 is landed, I'll update this PR to include the formatted files.