aboutsummaryrefslogtreecommitdiff
path: root/plugins/editorconfig/tests/parser/whitespace.in
blob: d1f3c5fa2d1448b207b810de4c22ee59ca938544 (plain)
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
; test whitespace usage

root = true

; no whitespace
[test1.c]
key=value

; spaces around equals
[test2.c]
key = value

; lots of space after equals
[test3.c]
key  =   value

; spaces before property name
[test4.c]
  key=value

; spaces after property value
[test5.c]
key=value  

; blank lines between properties
[test6.c]

key1=value1

key2=value2

; spaces in section name
[ test 7 ]
key=value

; spaces before section name
  [test8.c]
key=value

; spaces after section name
[test9.c]  
key=value

; spacing before middle property
[test10.c]
key1=value1
  key2=value2
key3=value3