From 95cef3c0e965202a36841a36c189d3917d7706ec Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 15 Feb 2016 15:43:59 +0100 Subject: merge metadata files --- netlib/check_coding_style.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 netlib/check_coding_style.sh (limited to 'netlib/check_coding_style.sh') diff --git a/netlib/check_coding_style.sh b/netlib/check_coding_style.sh deleted file mode 100755 index a1c94e03..00000000 --- a/netlib/check_coding_style.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/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 -- cgit v1.2.3