-
Notifications
You must be signed in to change notification settings - Fork 90
/
license-header-definition.xml
31 lines (31 loc) · 1.15 KB
/
license-header-definition.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-License-Identifier: Apache-2.0
Copyright Blazebit
-->
<additionalHeaders>
<javadoc_style>
<firstLine>/*</firstLine>
<beforeEachLine> * </beforeEachLine>
<endLine> */</endLine>
<afterEachLine> </afterEachLine>
<!--skipLine></skipLine-->
<firstLineDetectionPattern>(\s|\t)*/\*.*$</firstLineDetectionPattern>
<lastLineDetectionPattern>.*\*/(\s|\t)*$</lastLineDetectionPattern>
<allowBlankLines>false</allowBlankLines>
<isMultiline>true</isMultiline>
<padLines>false</padLines>
</javadoc_style>
<xml_style>
<firstLine><!--</firstLine>
<beforeEachLine> </beforeEachLine>
<endLine> --></endLine>
<afterEachLine> </afterEachLine>
<skipLine>^<\?xml.*>$</skipLine>
<firstLineDetectionPattern>(\s|\t)*<!--.*$</firstLineDetectionPattern>
<lastLineDetectionPattern>.*-->(\s|\t)*$</lastLineDetectionPattern>
<allowBlankLines>true</allowBlankLines>
<isMultiline>true</isMultiline>
<padLines>false</padLines>
</xml_style>
</additionalHeaders>