We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89acec9 commit 144480fCopy full SHA for 144480f
1 file changed
lib/solargraph/shell.rb
@@ -259,7 +259,7 @@ def typecheck *files
259
next if problems.empty?
260
problems.sort! { |a, b| a.location.range.start.line <=> b.location.range.start.line }
261
puts problems.map { |prob|
262
- "#{prob.location.filename}:#{prob.location.range.start.line + 1} - #{prob.message}"
+ "#{prob.location.filename}:#{prob.location.range.start.line + 1}: #{prob.message}"
263
}.join("\n")
264
filecount += 1
265
probcount += problems.length
0 commit comments