-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
check-whitespace.jl
executable file
·82 lines (73 loc) · 2.35 KB
/
check-whitespace.jl
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
#!/usr/bin/env julia
const patterns = split("""
*.1
*.c
*.cpp
*.h
*.inc
*.jl
*.lsp
*.make
*.md
*.mk
*.rst
*.scm
*.sh
*.yml
*Makefile
""")
const is_gha = something(tryparse(Bool, get(ENV, "GITHUB_ACTIONS", "false")), false)
# Note: `git ls-files` gives `/` as a path separator on Windows,
# so we just use `/` for all platforms.
allow_tabs(path) =
path == "Make.inc" ||
endswith(path, "Makefile") ||
endswith(path, ".make") ||
endswith(path, ".mk") ||
startswith(path, "src/support") ||
startswith(path, "src/flisp") ||
endswith(path, "test/syntax.jl") ||
endswith(path, "test/triplequote.jl")
const errors = Set{Tuple{String,Int,String}}()
function check_whitespace()
for path in eachline(`git ls-files -- $patterns`)
lineno = 0
non_blank = 0
file_err(msg) = push!(errors, (path, 0, msg))
line_err(msg) = push!(errors, (path, lineno, msg))
isfile(path) || continue
for line in eachline(path, keep=true)
lineno += 1
contains(line, '\r') && file_err("non-UNIX line endings")
contains(line, '\ua0') && line_err("non-breaking space")
allow_tabs(path) ||
contains(line, '\t') && line_err("tab")
endswith(line, '\n') || line_err("no trailing newline")
line = chomp(line)
endswith(line, r"\s") && line_err("trailing whitespace")
contains(line, r"\S") && (non_blank = lineno)
end
non_blank < lineno && line_err("trailing blank lines")
end
if isempty(errors)
println(stderr, "Whitespace check found no issues.")
exit(0)
else
println(stderr, "Whitespace check found $(length(errors)) issues:")
for (path, lineno, msg) in sort!(collect(errors))
if lineno == 0
println(stderr, "$path -- $msg")
if is_gha
println(stdout, "::warning title=Whitespace check,file=", path, "::", msg)
end
else
println(stderr, "$path:$lineno -- $msg")
if is_gha
println(stdout, "::warning title=Whitespace check,file=", path, ",line=", lineno, "::", msg)
end
end
end
exit(1)
end
end
check_whitespace()