summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/diagnostics.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/diagnostics.lua b/lua/diagnostics.lua
index 55b50d6a..21f81e2a 100644
--- a/lua/diagnostics.lua
+++ b/lua/diagnostics.lua
@@ -41,6 +41,8 @@ module.sendAleResultsToDiagnostics = function(buffer, loclist)
end_col = location.end_col,
-- Which severity: error, warning, or info?
severity = ale_type_to_diagnostic_severity[location.type] or "E",
+ -- An error code
+ code = location.code,
-- The error message
message = location.text,
-- e.g. "rubocop"