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 262ae8e commit bb9153dCopy full SHA for bb9153d
1 file changed
lib/solargraph/shell.rb
@@ -187,7 +187,7 @@ def typecheck *files
187
problems = checker.problems
188
next if problems.empty?
189
problems.sort! { |a, b| a.location.range.start.line <=> b.location.range.start.line }
190
- puts problems.map { |prob| "#{prob.location.filename}:#{prob.location.range.start.line + 1} - #{prob.message}" }.join("\n")
+ puts problems.map { |prob| "#{prob.location.filename}:#{prob.location.range.start.line + 1}: #{prob.message}" }.join("\n")
191
filecount += 1
192
probcount += problems.length
193
end
0 commit comments