feat: add indents for annotation defs (#4828)

- Add indent for `@interface` and `@Annotation(...)`
- Add notes for indent queries
This commit is contained in:
Pham Huy Hoang 2023-06-04 13:28:41 +09:00 committed by GitHub
parent 79aedc9675
commit 1281601cb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 27 additions and 9 deletions

View file

@ -0,0 +1,3 @@
abstract public @interface Foo {
abstract public String Bar();
}

View file

@ -0,0 +1,8 @@
@ContextConfiguration(
classes = {
WireMockConfig.class,
}
)
public class Foo {
}