-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.txt
159 lines (148 loc) · 7.8 KB
/
README.txt
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
┌─[./examples/tailwind/code.html]
│
∙ 1 │ <div class="block text-gray-900 flex sm:block sm:flex">
· ──┬── ─┬──
· ╰──────────────────┴──── Colliding classes, they operate on the same "display" property.
·
2 │ <div class="text-gray-100 block text-gray-100 block">Hello</div>
3 │ </div>
│
└─
┌─[./examples/tailwind/code.html]
│
∙ 1 │ <div class="block text-gray-900 flex sm:block sm:flex">
· ───┬──── ───┬───
· ╰────────┴───── Colliding classes, they operate on the same "display" property.
·
2 │ <div class="text-gray-100 block text-gray-100 block">Hello</div>
3 │ </div>
│
└─
┌─[./examples/tailwind/code.html]
│
1 │ <div class="block text-gray-900 flex sm:block sm:flex">
∙ 2 │ <div class="text-gray-100 block text-gray-100 block">Hello</div>
3 │ </div> ──────┬────── ──────┬──────
· ╰───────────────────┴──────── Duplicate class "text-gray-100"
·
5 │ <div class="underline block text-gray-100 antialiased flex line-through">
·
├─
· You can solve this by removing one of the duplicate classes:
·
· ```html (diff)
· - <div class="text-gray-100 block text-gray-100 block">Hello</div>
· + <div class="text-gray-100 block block">Hello</div>
· ```
└─
┌─[./examples/tailwind/code.html]
│
1 │ <div class="block text-gray-900 flex sm:block sm:flex">
∙ 2 │ <div class="text-gray-100 block text-gray-100 block">Hello</div>
3 │ </div> ──┬── ──┬──
· ╰───────────────────┴──── Duplicate class "block"
·
5 │ <div class="underline block text-gray-100 antialiased flex line-through">
·
├─
· You can solve this by removing one of the duplicate classes:
·
· ```html (diff)
· - <div class="text-gray-100 block text-gray-100 block">Hello</div>
· + <div class="text-gray-100 text-gray-100 block">Hello</div>
· ```
└─
┌─[./examples/tailwind/code.html]
│
2 │ <div class="text-gray-100 block text-gray-100 block">Hello</div>
3 │ </div>
·
∙ 5 │ <div class="underline block text-gray-100 antialiased flex line-through">
· ────┬──── ─────┬────── ╭─
· ╰───────────────────────────────────────────────┴───────┤ Colliding classes, they operate on
6 │ <div class="text-gray-200 text-gray-300"></div> │ the same "text-decoration" property.
· ╰─
·
7 │ <div class="truncate text-gray-200 overflow-ellipsis overflow-scroll"></div>
8 │ </div>
│
└─
┌─[./examples/tailwind/code.html]
│
2 │ <div class="text-gray-100 block text-gray-100 block">Hello</div>
3 │ </div>
·
∙ 5 │ <div class="underline block text-gray-100 antialiased flex line-through">
· ──┬── ─┬──
· ╰──────────────────────────────┴──── Colliding classes, they operate on the same "display" property.
·
6 │ <div class="text-gray-200 text-gray-300"></div>
7 │ <div class="truncate text-gray-200 overflow-ellipsis overflow-scroll"></div>
8 │ </div>
│
└─
┌─[./examples/tailwind/code.html]
│
5 │ <div class="underline block text-gray-100 antialiased flex line-through">
6 │ <div class="text-gray-200 text-gray-300"></div>
∙ 7 │ <div class="truncate text-gray-200 overflow-ellipsis overflow-scroll"></div>
8 │ </div> ───┬──── ───────┬─────── ╭─
· ╰────────────────────────────────────────────┴────────┤ Colliding classes, they operate
10 │ <div class="block text-gray-900 flex sm:block sm:flex"> │ on the same "overflow" property.
· ╰─
│
└─
┌─[./examples/tailwind/code.html]
│
5 │ <div class="underline block text-gray-100 antialiased flex line-through">
6 │ <div class="text-gray-200 text-gray-300"></div>
∙ 7 │ <div class="truncate text-gray-200 overflow-ellipsis overflow-scroll"></div>
8 │ </div> ───┬──── ────────┬────────
· ╰───────────────────────────┴────────── Colliding classes, they operate on the same "text-overflow" property.
·
10 │ <div class="block text-gray-900 flex sm:block sm:flex">
│
└─
┌─[./examples/tailwind/code.html]
│
7 │ <div class="truncate text-gray-200 overflow-ellipsis overflow-scroll"></div>
8 │ </div>
·
∙ 10 │ <div class="block text-gray-900 flex sm:block sm:flex">
· ──┬── ─┬──
· ╰──────────────────┴──── Colliding classes, they operate on the same "display" property.
·
11 │ <div class="text-gray-100 grid place-content-center text-gray-100">Hello</div>
12 │ </div>
│
└─
┌─[./examples/tailwind/code.html]
│
7 │ <div class="truncate text-gray-200 overflow-ellipsis overflow-scroll"></div>
8 │ </div>
·
∙ 10 │ <div class="block text-gray-900 flex sm:block sm:flex">
· ───┬──── ───┬───
· ╰────────┴───── Colliding classes, they operate on the same "display" property.
·
11 │ <div class="text-gray-100 grid place-content-center text-gray-100">Hello</div>
12 │ </div>
│
└─
┌─[./examples/tailwind/code.html]
│
8 │ </div>
·
10 │ <div class="block text-gray-900 flex sm:block sm:flex">
∙ 11 │ <div class="text-gray-100 grid place-content-center text-gray-100">Hello</div>
12 │ </div> ──────┬────── ──────┬──────
· ╰───────────────────────────────────────┴──────── Duplicate class "text-gray-100"
·
├─
· You can solve this by removing one of the duplicate classes:
·
· ```html (diff)
· - <div class="text-gray-100 grid place-content-center text-gray-100">Hello</div>
· + <div class="text-gray-100 grid place-content-center">Hello</div>
· ```
└─