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 8849935 commit 7b95f6bCopy full SHA for 7b95f6b
bundler/spec/quality_spec.rb
@@ -20,6 +20,9 @@ def check_for_git_merge_conflicts(filename)
20
end
21
22
def check_for_tab_characters(filename)
23
+ # Because Go uses hard tabs
24
+ return if filename.end_with?(".go.tt")
25
+
26
failing_lines = []
27
each_line(filename) do |line, number|
28
failing_lines << number + 1 if line.include?("\t")
0 commit comments