| Commit message (Expand) | Author | Age | Files | Lines |
* | finishing context checks cleanup | Pascal Rigaux | 2004-05-09 | 1 | -50/+46 |
* | better contexts | Pascal Rigaux | 2004-05-08 | 1 | -91/+86 |
* | detect "$xxx == undef" | Pascal Rigaux | 2004-04-30 | 1 | -3/+6 |
* | suggest replacing system(qq(foo "$xxx")) with system('foo', $xxx) | Pascal Rigaux | 2004-04-28 | 1 | -0/+8 |
* | fix typo | Pascal Rigaux | 2004-04-28 | 1 | -0/+1 |
* | separate rewriting rules from warnings | Pascal Rigaux | 2004-04-28 | 1 | -55/+51 |
* | various detection of join() misuse | Pascal Rigaux | 2004-04-28 | 1 | -0/+9 |
* | get_pos_from_expr() (previously named get_pos_from_tree()) is useful, even in... | Pascal Rigaux | 2004-04-28 | 1 | -0/+34 |
* | fix typo | Pascal Rigaux | 2004-04-28 | 1 | -1/+1 |
* | - deprecate "open F, ..." prefering "open(my $F, ...)" | Pascal Rigaux | 2004-04-28 | 1 | -1/+14 |
* | - do check_simple_pattern() directly in from_PATTERN() | Pascal Rigaux | 2004-04-28 | 1 | -2/+4 |
* | fix warning (would also need fixing detecting of boolean context vs scalar | Pascal Rigaux | 2004-03-31 | 1 | -1/+1 |
* | in "$a ? $a : xxx", "xxx" can need short circuit | Pascal Rigaux | 2004-03-31 | 1 | -1/+1 |
* | perl_checker: entries in generated pot file are sorted by files | Pascal Rigaux | 2004-01-09 | 1 | -12/+14 |
* | fix checking dropped value in some cases | Pascal Rigaux | 2004-01-05 | 1 | -1/+2 |
* | use hash_ref() to check priority of the arguments | Pascal Rigaux | 2004-01-05 | 1 | -1/+3 |
* | disallow | Pascal Rigaux | 2003-12-16 | 1 | -12/+32 |
* | check the number of parameters given to N() | Pascal Rigaux | 2003-12-16 | 1 | -10/+19 |
* | - drop internally operator "qw" by rewriting qw(...) into a list of strings | Pascal Rigaux | 2003-12-16 | 1 | -2/+2 |
* | - pop behaves just like shift | Pascal Rigaux | 2003-12-16 | 1 | -2/+8 |
* | fix checking value is dropped in tuple | Pascal Rigaux | 2003-12-16 | 1 | -1/+2 |
* | - add the tuple(...) context | Pascal Rigaux | 2003-12-16 | 1 | -10/+32 |
* | check what is on the left side of "xxx =~ s///" | Pascal Rigaux | 2003-12-15 | 1 | -2/+8 |
* | - check the context on left side of =~ | Pascal Rigaux | 2003-12-15 | 1 | -0/+4 |
* | - specify the return context for N() and N_() | Pascal Rigaux | 2003-12-15 | 1 | -1/+2 |
* | allow to specify the return context of functions instead of always saying M_u... | Pascal Rigaux | 2003-12-15 | 1 | -9/+10 |
* | update "faking a normal lexbuf" code for new ocaml's parsing.ml | Pascal Rigaux | 2003-12-15 | 1 | -3/+3 |
* | - correctly handle "shift" with no parameter at toplevel | Pascal Rigaux | 2003-12-15 | 1 | -2/+1 |
* | in the generated .pot, try to use relative filenames (so that the .pot doesn't | Pascal Rigaux | 2003-11-10 | 1 | -1/+1 |
* | new warning: you can replace "member($xxx, keys %yyy)" with "exists $yyy{$xxx}" | Pascal Rigaux | 2003-11-10 | 1 | -0/+7 |
* | also disallow map {...} %xxx | Pascal Rigaux | 2003-10-01 | 1 | -2/+9 |
* | warn: foreach (%xxx) { ... } | Pascal Rigaux | 2003-10-01 | 1 | -0/+2 |
* | new warning: N_("xxx") . "yyy" is dumb since the string "xxx" will never get ... | Pascal Rigaux | 2003-09-30 | 1 | -0/+3 |
* | - allow $_o_XXX parameter name which is both unused and optional (same for $_... | Pascal Rigaux | 2003-08-11 | 1 | -2/+5 |
* | - disallow return(...), prefering return ... | Pascal Rigaux | 2003-05-27 | 1 | -13/+25 |
* | better warning for: print $a . 'foo' | Pascal Rigaux | 2003-05-26 | 1 | -1/+5 |
* | add a special case to handle "arch => 1" without going through word_alone() | Pascal Rigaux | 2003-05-26 | 1 | -4/+4 |
* | - warn things like: if ($a = 1) { ... } | Pascal Rigaux | 2003-05-26 | 1 | -0/+6 |
* | check for "0 or ..." | Pascal Rigaux | 2003-05-26 | 1 | -0/+5 |
* | suggest using the functional map instead of the imperative foreach when | Pascal Rigaux | 2003-05-23 | 1 | -0/+12 |
* | fix detection of grep in scalar context | Pascal Rigaux | 2003-05-23 | 1 | -3/+4 |
* | add warning: you can replace "map { if_(..., $_) }" with "grep { ... }" | Pascal Rigaux | 2003-05-23 | 1 | -0/+4 |
* | - suggest any instead of grep in scalar context | Pascal Rigaux | 2003-05-23 | 1 | -0/+6 |
* | correctly warn about the missing space in "my ($a,$b, $c);" | Pascal Rigaux | 2003-05-16 | 1 | -1/+2 |
* | map and grep do not return a scalar | Pascal Rigaux | 2003-04-30 | 1 | -0/+2 |
* | allow "*foo = sub {}" with no prototype | Pascal Rigaux | 2003-04-30 | 1 | -6/+6 |
* | ensure return values are used | Pascal Rigaux | 2003-04-29 | 1 | -15/+70 |
* | - handle empty prototypes | Pascal Rigaux | 2003-04-24 | 1 | -7/+11 |
* | basic "number of arguments" checking | Pascal Rigaux | 2003-04-17 | 1 | -1/+2 |
* | forbid "unless (...) { ... } else { ... }" and "unless (...) { ... } elsif (.... | Pascal Rigaux | 2003-04-15 | 1 | -0/+4 |