Spotless android code

Kiran Gyawali
2 min readMay 14, 2023

--

We will Automate code formatting using Spotless, git hook and ktlint in this example.

Spotless

Start by adding a dependency in project level gradle file

add a new gradle file spotless.gradle in a project root folder

and in a module-level gradle file

You can sync and run./gradlew spotlessCheck now to check for formatting issues, or ./gradlew spotlessApply to fix those issues. If it can fix it automatically, it will; else, it will throw an error.

ktlint

In this example, our spotless is set up to use ktlint for kotlin files.

You can setup spotless for other language and with other standards like diktat or ktfmt . you can find everything you need here.

We defined a path to the editor config while setting up ktlint as “${project.rootDir}/spotless/.editorconfig”. Using that editor config, we can enable/disable certain rules in ktlint. Read about ktlint rules here and tweak the config like below to have rules according to your project need.

Git hook

Instead of running the gradle task spotlessApply manually, we can automate this to run before every commit with the help of git hooks. Create a file with the name pre-commit inside .git/hooks folder of your project, and copy-paste the code below. Which will run the spotlessApply gradle command and will abort the commit if it fails. If it succeeds, then it will proceed with your commit, including the spotless fixes for your staged files.

pre-commit git hook

You now have a pre-commit hook setup for your project. Try to commit, and you should see that it's working for you. Only for you. If we want other devs to have this setup, we will have to ask all of them to do it on their device. So, we will automate this for them. We will add a gradle task to copy pre-commit file into .git/hooks folder when a project is built. Hoping whoever works on this project will build the project at least once before committing. Let’s add that pre-commit file into a folder called scripts in the project root. Then add a gradle task to copy that script into the git hooks folder. we will do that in our spotless gradle file. Your spotless gradle file should look like this

Done. Now all devs will see a git pre-commit hook when they clone and build this project. For already cloned repos, it will be set up on the next project build.

This git hooks can be skipped when committing a code, so if you really want to enforce the formatting before any PR is merged, add spotlessCheck in your PR validation. This Git hook for spotless is just a convenience for a dev to make sure that the lint issue is fixed before submitting any change for review.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Kiran Gyawali
Kiran Gyawali

Written by Kiran Gyawali

Have you tried to look at some thing, with an unconventional perspective? I try to, mostly!

No responses yet

Write a response