xref: /aosp_15_r20/external/accompanist/spotless/greclipse.properties (revision fa44fe6ae8e729aa3cfe5c03eedbbf98fb44e2c6)
1*fa44fe6aSInna Palant#
2*fa44fe6aSInna Palant# Copyright 2020 The Android Open Source Project
3*fa44fe6aSInna Palant#
4*fa44fe6aSInna Palant# Licensed under the Apache License, Version 2.0 (the "License");
5*fa44fe6aSInna Palant# you may not use this file except in compliance with the License.
6*fa44fe6aSInna Palant# You may obtain a copy of the License at
7*fa44fe6aSInna Palant#
8*fa44fe6aSInna Palant#      https://www.apache.org/licenses/LICENSE-2.0
9*fa44fe6aSInna Palant#
10*fa44fe6aSInna Palant# Unless required by applicable law or agreed to in writing, software
11*fa44fe6aSInna Palant# distributed under the License is distributed on an "AS IS" BASIS,
12*fa44fe6aSInna Palant# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*fa44fe6aSInna Palant# See the License for the specific language governing permissions and
14*fa44fe6aSInna Palant# limitations under the License.
15*fa44fe6aSInna Palant#
16*fa44fe6aSInna Palant
17*fa44fe6aSInna Palant#Whether to use 'space', 'tab' or 'mixed' (both) characters for indentation.
18*fa44fe6aSInna Palant#The default value is 'tab'.
19*fa44fe6aSInna Palantorg.eclipse.jdt.core.formatter.tabulation.char=space
20*fa44fe6aSInna Palant
21*fa44fe6aSInna Palant#Number of spaces used for indentation in case 'space' characters
22*fa44fe6aSInna Palant#have been selected. The default value is 4.
23*fa44fe6aSInna Palantorg.eclipse.jdt.core.formatter.tabulation.size=4
24*fa44fe6aSInna Palant
25*fa44fe6aSInna Palant#Number of spaces used for indentation in case 'mixed' characters
26*fa44fe6aSInna Palant#have been selected. The default value is 4.
27*fa44fe6aSInna Palantorg.eclipse.jdt.core.formatter.indentation.size=4
28*fa44fe6aSInna Palant
29*fa44fe6aSInna Palant#Whether or not indentation characters are inserted into empty lines.
30*fa44fe6aSInna Palant#The default value is 'true'.
31*fa44fe6aSInna Palantorg.eclipse.jdt.core.formatter.indent_empty_lines=false
32*fa44fe6aSInna Palant
33*fa44fe6aSInna Palant#Number of spaces used for multiline indentation.
34*fa44fe6aSInna Palant#The default value is 2.
35*fa44fe6aSInna Palantgroovy.formatter.multiline.indentation=2
36*fa44fe6aSInna Palant
37*fa44fe6aSInna Palant#Length after which list are considered too long. These will be wrapped.
38*fa44fe6aSInna Palant#The default value is 30.
39*fa44fe6aSInna Palantgroovy.formatter.longListLength=30
40*fa44fe6aSInna Palant
41*fa44fe6aSInna Palant#Whether opening braces position shall be the next line.
42*fa44fe6aSInna Palant#The default value is 'same'.
43*fa44fe6aSInna Palantgroovy.formatter.braces.start=same
44*fa44fe6aSInna Palant
45*fa44fe6aSInna Palant#Whether closing braces position shall be the next line.
46*fa44fe6aSInna Palant#The default value is 'next'.
47*fa44fe6aSInna Palantgroovy.formatter.braces.end=next
48*fa44fe6aSInna Palant
49*fa44fe6aSInna Palant#Remove unnecessary semicolons. The default value is 'false'.
50*fa44fe6aSInna Palantgroovy.formatter.remove.unnecessary.semicolons=false