Преглед на файлове

enable some more warnings now that autofix works pretty well.

ruduki2 преди 5 години
родител
ревизия
019c26a805
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  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?('[[')