-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy patheol-test.ts.snap
More file actions
118 lines (85 loc) · 4.4 KB
/
Copy patheol-test.ts.snap
File metadata and controls
118 lines (85 loc) · 4.4 KB
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using crlf end of line from ".editorconfig" 1`] = `
"## Rules
<!-- begin auto-generated rules list -->
💼 Configurations enabled in.
| Name | 💼 |
| :------------------- | :------------------------------------- |
| [a](docs/rules/a.md) | ![badge-a][] ![badge-B][] ![badge-c][] |
| [B](docs/rules/B.md) | |
| [c](docs/rules/c.md) | |
<!-- end auto-generated rules list -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using crlf end of line from ".editorconfig" 2`] = `
"# test/a
💼 This rule is enabled in the following configs: \`a\`, \`B\`, \`c\`.
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using crlf end of line from ".editorconfig" 3`] = `
"# B
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using crlf end of line from ".editorconfig" 4`] = `
"# c
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using lf end of line from ".editorconfig" 1`] = `
"## Rules
<!-- begin auto-generated rules list -->
💼 Configurations enabled in.
| Name | 💼 |
| :------------------- | :------------------------------------- |
| [a](docs/rules/a.md) | ![badge-a][] ![badge-B][] ![badge-c][] |
| [B](docs/rules/B.md) | |
| [c](docs/rules/c.md) | |
<!-- end auto-generated rules list -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using lf end of line from ".editorconfig" 2`] = `
"# test/a
💼 This rule is enabled in the following configs: \`a\`, \`B\`, \`c\`.
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using lf end of line from ".editorconfig" 3`] = `
"# B
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using lf end of line from ".editorconfig" 4`] = `
"# c
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using the end of line from ".editorconfig" while respecting the .md specific end of line setting 1`] = `
"## Rules
<!-- begin auto-generated rules list -->
💼 Configurations enabled in.
| Name | 💼 |
| :------------------- | :------------------------------------- |
| [a](docs/rules/a.md) | ![badge-a][] ![badge-B][] ![badge-c][] |
| [B](docs/rules/B.md) | |
| [c](docs/rules/c.md) | |
<!-- end auto-generated rules list -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using the end of line from ".editorconfig" while respecting the .md specific end of line setting 2`] = `
"# test/a
💼 This rule is enabled in the following configs: \`a\`, \`B\`, \`c\`.
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using the end of line from ".editorconfig" while respecting the .md specific end of line setting 3`] = `
"# B
<!-- end auto-generated rule header -->
"
`;
exports[`getEndOfLine with a ".editorconfig" file generates using the correct end of line when ".editorconfig" exists generates using the end of line from ".editorconfig" while respecting the .md specific end of line setting 4`] = `
"# c
<!-- end auto-generated rule header -->
"
`;