Remove tools/check-coding-style 14/324314/1
authorSangyoon Jang <jeremy.jang@samsung.com>
Thu, 15 May 2025 08:44:01 +0000 (17:44 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Thu, 15 May 2025 08:44:01 +0000 (17:44 +0900)
This script is not used any more.

Change-Id: I31bbade63f4eb037de233e18243a1728b9106f10
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
tools/check-coding-style [deleted file]

diff --git a/tools/check-coding-style b/tools/check-coding-style
deleted file mode 100755 (executable)
index fd60481..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-if [ ! `which cpplint.py` ]; then
-   echo -e "\nPlease make sure cpplint.py is in your PATH. It is part of depot_tools inside Chromium repository."
-   exit 1
-fi
-
-OLDPWD=$PWD
-BASE=`dirname $0`
-cd $BASE/..
-
-# filters
-FILTERS="-readability/streams,-build/c++11"
-
-cpplint.py --root=src --filter="$FILTERS" $(find . \( -name '*.h' -o -name '*.cc' \) )
-RET=$?
-
-JS_RET_VAL=$?
-cd $OLDPWD
-
-if [ "x$RET" == "x0" ]; then
-  exit 0
-else
-  exit 1
-fi