]> git.donarmstrong.com Git - perltidy.git/commitdiff
update docs
authorSteve Hancock <perltidy@users.sourceforge.net>
Sat, 7 Dec 2024 23:48:17 +0000 (15:48 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sat, 7 Dec 2024 23:48:17 +0000 (15:48 -0800)
dev-bin/check_perltidy_line_length.pl [deleted file]
local-docs/Release-Checklist.md

diff --git a/dev-bin/check_perltidy_line_length.pl b/dev-bin/check_perltidy_line_length.pl
deleted file mode 100755 (executable)
index 8d35334..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-# check that the lines with fixed lengths in the perltidy pod are not too long
-my $fname='perltidy';
-my $fh;
-if (!open($fh, '<', $fname)) {
-   print "cannot open $fname: $!\n";
-}
-my @too_long;
-my $lno=0;
-while (my $line=<$fh>) {
-   $lno++;
-   my $excess=length($line)-80;
-   next if ($excess<=0);
-   next if ($line !~ /^\s/);
-   print "$lno:$excess:$line";
-   push @too_long, $lno;
-}
-if (@too_long) {
-   my $num=@too_long;
-   print "$num lines exceed 80 chars:\n";
-}
index af5477af1dfd4c09212d2c1a47d173e99bb1b5e1..65c61702ad025ec3adb8cd6b6de4a5024dfc1cce 100644 (file)
@@ -2,8 +2,9 @@
 
 - basic quality control:
   - 'make test' successful for all commit candidates
-  - run 'devbin/run__convergence_tests.pl' for all commit candidates
-  - Run perlcritic
+  - run ``devbin/run_convergence_tests.pl`` for all commit candidates
+  - run perlcritic
+  - run ``check_text.pl`` on all files
   - run NYTProf and check the activity and performance of all changed code
   - IMPORTANT: random testing minimum test duration without irregularities:
     - 3 cpu hours for a commit candidate