This repository has been archived by the owner on Aug 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 787
feat(diagnostics): add cmake_lint to go alongside cmake_format #1067
Merged
jose-elias-alvarez
merged 2 commits into
jose-elias-alvarez:main
from
mitchallain:feature/cmake_lint
Sep 19, 2022
+40
−1
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
local h = require("null-ls.helpers") | ||
local methods = require("null-ls.methods") | ||
|
||
return h.make_builtin({ | ||
name = "cmake_lint", | ||
meta = { | ||
url = "https://github.com/cheshirekow/cmake_format", | ||
description = "Check cmake listfiles for style violations, common mistakes, and anti-patterns.", | ||
}, | ||
method = methods.internal.DIAGNOSTICS_ON_SAVE, | ||
filetypes = { "cmake" }, | ||
generator_opts = { | ||
command = "cmake-lint", | ||
args = { | ||
"$FILENAME", | ||
}, | ||
format = "line", | ||
to_stdin = false, | ||
from_stderr = true, | ||
on_output = h.diagnostics.from_pattern( | ||
[[(%d+),(%d+): %[((%w)[%d]+)%] (.+)]], | ||
{ "row", "col", "code", "severity", "message" }, | ||
{ | ||
severities = { | ||
E = h.diagnostics.severities["error"], | ||
W = h.diagnostics.severities["warning"], | ||
C = h.diagnostics.severities["information"], | ||
R = h.diagnostics.severities["information"], | ||
I = h.diagnostics.severities["information"], | ||
}, | ||
offsets = { col = 1 }, | ||
} | ||
), | ||
}, | ||
factory = h.generator_factory, | ||
}) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So as currently written, the linter will read the file on disk, which means that diagnostics won't update properly until the file is actually written. It does seem that
cmake-lint
hasstdin
support, but this PR seems to imply that it doesn't currently work.Using
stdin
would be ideal, but other options that we have are writing the buffer's contents to a temp file or only generating diagnostics on save.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, thanks for the feedback. Personal preference would be to switch to
DIAGNOSTICS_ON_SAVE
. Judging by the age of that PR incmake_format
, stdin may not be fixed soon.