aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/check_coding_style.sh
blob: a1c94e030fccd0bd2275f9f6aa3cbd5d30504ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

autopep8 -i -r -a -a .
if [[ -n "$(git status -s)" ]]; then
  echo "autopep8 yielded the following changes:"
  git status -s
  git --no-pager diff
  exit 0 # don't be so strict about coding style errors
fi

autoflake -i -r --remove-all-unused-imports --remove-unused-variables .
if [[ -n "$(git status -s)" ]]; then
  echo "autoflake yielded the following changes:"
  git status -s
  git --no-pager diff
  exit 0 # don't be so strict about coding style errors
fi

echo "Coding style seems to be ok."
exit 0