esilver
esilver

Reputation: 28473

Is there a more strict Android java linter?

While coding inside of XCode for iOS I have been linting with Objective Clean, and while writing ruby code I have been linting with rubocop, and both are strict not only about language idioms but also about things like whitespace and line formatting. The built-in java linters for Android Studio have no such opinions, it appears, and I wonder if there are any java linters for Android code or java coding standards for Android (that integrate into the editor) that get down to the level of whitespace, variable capitalization, etc?

Upvotes: 1

Views: 1146

Answers (1)

yole
yole

Reputation: 97238

You can install the Checkstyle-IDEA plugin from the plugin manager - it will report formatting errors for you.

Upvotes: 2

Related Questions