Statistics
| Branch: | Tag: | Revision:

root / autotools / check-python-code @ 42f539ee

History | View | Annotate | Download (1.7 kB)

1
#!/bin/bash
2
#
3

    
4
# Copyright (C) 2009 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21
set -e
22

    
23
# "[...] If the last ARG evaluates to 0, let returns 1; 0 is returned
24
# otherwise.", hence ignoring the return value.
25
let problems=0 || :
26

    
27
for script; do
28
  if grep -n -H -F $'\t' "$script"; then
29
    let ++problems
30
    echo "Found tabs in $script" >&2
31
  fi
32

    
33
  if grep -n -H -E '[[:space:]]$' "$script"; then
34
    let ++problems
35
    echo "Found end-of-line-whitespace in $script" >&2
36
  fi
37

    
38
  # FIXME: This will also match "foo.xrange(...)"
39
  if grep -n -H -E '^[^#]*\<xrange\>' "$script"; then
40
    let ++problems
41
    echo "Forbidden function 'xrange' used in $script" >&2
42
  fi
43

    
44
  if grep -n -H -E -i '#[[:space:]]*(vim|Local[[:space:]]+Variables):' "$script"
45
  then
46
    let ++problems
47
    echo "Found editor-specific settings in $script" >&2
48
  fi
49

    
50
  if [[ "$(wc --max-line-length < "$script")" -gt 80 ]]; then
51
    let ++problems
52
    echo "Longest line in $script is longer than 80 characters" >&2
53
  fi
54
done
55

    
56
if [[ "$problems" -gt 0 ]]; then
57
  echo "Found $problems problem(s) while checking code." >&2
58
  exit 1
59
fi