-
Notifications
You must be signed in to change notification settings - Fork 28
/
info.yaml
47 lines (39 loc) · 1.13 KB
/
info.yaml
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
---
enabled: true
name: whitespace
image: restyled/restyler-whitespace:v0.2.0.0
# Attempt to exclude some obvious non-text files that would commonly see edits
# in a Pull Request. This list is not exhaustive or robust, and we would rather
# accidently run on something we shouldn't than not run on something we should.
include:
- "**/*"
- "!**/*.gif"
- "!**/*.ico"
- "!**/*.jpeg"
- "!**/*.jpg"
- "!**/*.pdf"
- "!**/*.png"
- "!**/fonts/**/*"
documentation:
- https://github.com/restyled-io/restyler-whitespace/blob/master/README.md
metadata:
languages:
- "*"
tests:
- contents: |
line one
line two
line three \
line four
restyled: |
line one
line two
line three \
line four
- contents: "line one\nline two\n\nline three\n\n\n"
restyled: "line one\nline two\n\nline three\n"
- contents: "line one\nline two\n\nline three"
restyled: "line one\nline two\n\nline three\n"
# Assert CRLF doesn't blow up
- contents: "line one\r\nline two\r\nline three\r\n"
restyled: "line one\r\nline two\r\nline three\r\n"