blob: cea6e3636df8d7e2ac17256d4438d7bdd9802f3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
##########################################################################
# File Name : clang-tidy-check.sh
# Encoding : utf-8
# Author : We-unite
# Email : weunite1848@gmail.com
# Created Time : 2024-04-28 16:50:37
##########################################################################
set -e
clang-tidy -checks="-*,$2" -header-filter=.* $1 -- -I/usr/include
|