-
Notifications
You must be signed in to change notification settings - Fork 154
/
.sbt-java-formatter.conf
68 lines (66 loc) · 1.89 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//ignore by files
// 1. the protobuf generated messages
ignored-files = [
"ArteryControlFormats.java",
"ContainerFormats.java",
"SystemMessageFormats.java",
"WireFormats.java",
"StreamRefMessages.java",
//in tests
"ProtobufProtocol.java"
//in docs
"TwoPhaseSetMessages.java"
"FlightAppModels.java",
//pekko-actor
"OnSpinWait.java",
"AbstractBoundedNodeQueue.java",
"AbstractMailbox.java",
"AbstractMessageDispatcher.java",
"AbstractNodeQueue.java",
//pekko-cluster
"ClusterMessages.java",
//pekko-cluster-metrics
"ClusterMetricsMessages.java",
//pekko-cluster-sharding-typed
"ShardingMessages.java",
//pekko-cluster-sharding
"ClusterShardingMessages.java",
//pekko-cluster-tools
"ClusterClientMessages.java",
"DistributedPubSubMessages.java",
//pekko-cluster-typed
"ClusterMessages.java",
"ReliableDelivery.java",
//pekko-distributed-data
"ReplicatedDataMessages.java",
"ReplicatorMessages.java",
//pekko-multi-node-testkit
"TestConductorProtocol.java",
//pekko-persistence
"MessageFormats.java",
//pekko-remote-tests
"TestMessages.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"
]