Android Studio by default format Butterknife code in this way:
@BindView(R.id.text_view)
TextView mTextView
Is there a way to tell Android Studio to format code in one line, like this:
@BindView(R.id.text_view) TextView mTextView
If this is possible I would like this rule to apply only to @BindView
annotation.