forked from apache/pekko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.sbt-java-formatter.conf
35 lines (34 loc) · 1.04 KB
/
.sbt-java-formatter.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//ignore by files
// 1. the protobuf generated messages
ignored-files = [
"ArteryControlFormats.java",
"ContainerFormats.java",
"SystemMessageFormats.java",
"WireFormats.java",
"StreamRefMessages.java",
//in tests
"ProtobufProtocol.java"
]
//ignore by packages:
// 1. adated source code
// 2. protobuf generated messages
ignored-packages = [
"org.apache.pekko.dispatch",
"org.apache.pekko.protobuf",
"sun.reflect",
"org.apache.pekko.cluster.protobuf.msg",
"org.apache.pekko.cluster.metrics.protobuf.msg",
"org.apache.pekko.cluster.sharding.protobuf.msg",
"org.apache.pekko.cluster.sharding.typed.internal.protobuf",
"org.apache.pekko.cluster.client.protobuf.msg",
"org.apache.pekko.cluster.pubsub.protobuf.msg",
"org.apache.pekko.cluster.typed.internal.protobuf",
"org.apache.pekko.cluster.ddata.protobuf.msg",
"org.apache.pekko.remote.testconductor",
"org.apache.pekko.persistence.serialization",
//in tests
"org.apache.pekko.remote.artery.protobuf",
//in docs
"docs.ddata.protobuf.msg",
"docs.persistence.proto"
]