|
@@ -259,11 +259,11 @@ task :lint do
|
|
|
end
|
|
|
# check for default text
|
|
|
if line.strip == 'Double-click this passage to edit it.'
|
|
|
- #puts "#{file.source_file}:#{lineno} has the default text \"Double-click this passage to edit it.\""
|
|
|
+ puts "#{file.source_file}:#{lineno} has the default text \"Double-click this passage to edit it.\""
|
|
|
end
|
|
|
# check for TODO/FIXME
|
|
|
if line.include?('TODO') || line.include?('FIXME')
|
|
|
- #puts "#{file.source_file}:#{lineno} has TODO/FIXME text: #{line}"
|
|
|
+ puts "#{file.source_file}:#{lineno} has TODO/FIXME text: #{line}"
|
|
|
end
|
|
|
# check for <<include>> as string
|
|
|
if line.include?('<<include') && !line.include?('[[')
|