Parcourir la source

enable some more warnings now that autofix works pretty well.

ruduki2 il y a 5 ans
Parent
commit
019c26a805
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      Rakefile

+ 2 - 2
Rakefile

@@ -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?('[[')