Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Our code is automatically formatted, and it is mandatory. The plugin that does this is called "spotless". To never have to deal with this, set up a git pre-commit hook:, this will add 5-20 seconds to git commit commands.

Put this in .git/hooks/pre-commit and sett set the executable bit:

Code Block
    #!/bin/sh

...


    set -e

...


    ./gradlew -PdisableSpotlessCheck spotlessApply

...