]> git.lizzy.rs Git - micro.git/blob - runtime/plugins/linter/linter.lua
add c++ linter
[micro.git] / runtime / plugins / linter / linter.lua
1 if GetOption("linter") == nil then
2     AddOption("linter", true)
3 end
4
5 MakeCommand("lint", "linter.lintCommand", 0)
6
7 function lintCommand()
8     CurView():Save(false)
9     runLinter()
10 end
11
12 function runLinter()
13     local ft = CurView().Buf:FileType()
14     local file = CurView().Buf.Path
15     local devnull = "/dev/null"
16     local temp = os.getenv("TMPDIR")
17     if OS == "windows" then
18         devnull = "NUL"
19         temp = os.getenv("TEMP")
20     end
21     if ft == "go" then
22         lint("gobuild", "go", {"build", "-o", devnull}, "%f:%l: %m")
23         lint("golint", "golint", {CurView().Buf.Path}, "%f:%l:%d+: %m")
24     elseif ft == "lua" then
25         lint("luacheck", "luacheck", {"--no-color", file}, "%f:%l:%d+: %m")
26     elseif ft == "python" then
27         lint("pyflakes", "pyflakes", {file}, "%f:%l:.-:? %m")
28         lint("mypy", "mypy", {file}, "%f:%l: %m")
29         lint("pylint", "pylint", {"--output-format=parseable", "--reports=no", file}, "%f:%l: %m")
30     elseif ft == "c" then
31         lint("gcc", "gcc", {"-fsyntax-only", "-Wall", "-Wextra", file}, "%f:%l:%d+:.+: %m")
32         elseif ft == "c++" then
33        lint("gcc", "gcc", {"-fsyntax-only","-std=c++14", "-Wall", "-Wextra", file}, "%f:%l:%d+:.+: %m")         
34     elseif ft == "swift" then
35         lint("switfc", "xcrun", {"swiftc", file}, "%f:%l:%d+:.+: %m")
36     elseif ft == "Objective-C" then
37         lint("clang", "xcrun", {"clang", "-fsyntax-only", "-Wall", "-Wextra", file}, "%f:%l:%d+:.+: %m")
38     elseif ft == "d" then
39         lint("dmd", "dmd", {"-color=off", "-o-", "-w", "-wi", "-c", file}, "%f%(%l%):.+: %m")
40     elseif ft == "java" then
41         lint("javac", "javac", {"-d", temp, file}, "%f:%l: error: %m")
42     elseif ft == "javascript" then
43         lint("jshint", "jshint", {file}, "%f: line %l,.+, %m")
44     elseif ft == "nim" then
45         lint("nim", "nim", {"check", "--listFullPaths", "--stdout", "--hints:off", file}, "%f.%l, %d+. %m")
46     end
47 end
48
49 function onSave(view)
50     if GetOption("linter") then
51         runLinter()
52     else
53         CurView():ClearAllGutterMessages()
54     end
55 end
56
57 function lint(linter, cmd, args, errorformat)
58     CurView():ClearGutterMessages(linter)
59
60     JobSpawn(cmd, args, "", "", "linter.onExit", linter, errorformat)
61 end
62
63 function onExit(output, linter, errorformat)
64     local lines = split(output, "\n")
65
66     local regex = errorformat:gsub("%%f", "(..-)"):gsub("%%l", "(%d+)"):gsub("%%m", "(.+)")
67     for _,line in ipairs(lines) do
68         -- Trim whitespace
69         line = line:match("^%s*(.+)%s*$")
70         if string.find(line, regex) then
71             local file, line, msg = string.match(line, regex)
72             if basename(CurView().Buf.Path) == basename(file) then
73                 CurView():GutterMessage(linter, tonumber(line), msg, 2)
74             end
75         end
76     end
77 end
78
79 function split(str, sep)
80     local result = {}
81     local regex = ("([^%s]+)"):format(sep)
82     for each in str:gmatch(regex) do
83         table.insert(result, each)
84     end
85     return result
86 end
87
88 function basename(file)
89     local name = string.gsub(file, "(.*/)(.*)", "%2")
90     return name
91 end