File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ exclude_paths:
2121 - ' logs/**'
2222 - ' actions-runner/**'
2323
24+ # Third-party libraries (KCP protocol implementation)
25+ - ' _include/ikcp.h' # Third-party KCP library header
26+ - ' net/ikcp.c' # Third-party KCP library implementation
27+
2428 # Configuration files (but keep source code analysis)
2529 - ' .clang-format'
2630 - ' .gitignore'
@@ -37,14 +41,17 @@ engines:
3741 - ' generated/**'
3842 - ' cmake-build-debug/**'
3943 - ' build/**'
44+ - ' _include/ikcp.h'
45+ - ' net/ikcp.c'
4046
4147 clang-tidy :
4248 enabled : true
4349 exclude_paths :
4450 - ' generated/**'
4551 - ' cmake-build-debug/**'
4652 - ' build/**'
47- - ' net/ikcp.c' # Third-party KCP implementation
53+ - ' _include/ikcp.h' # Third-party KCP implementation
54+ - ' net/ikcp.c' # Third-party KCP implementation
4855
4956 # Disable non-C++ tools
5057 eslint :
@@ -67,6 +74,8 @@ duplication:
6774 - ' generated/**'
6875 - ' cmake-build-debug/**'
6976 - ' build/**'
77+ - ' _include/ikcp.h'
78+ - ' net/ikcp.c'
7079
7180# Coverage settings
7281coverage :
@@ -77,3 +86,5 @@ coverage:
7786 - ' logs/**'
7887 - ' cmake-build-debug/**'
7988 - ' build/**'
89+ - ' _include/ikcp.h'
90+ - ' net/ikcp.c'
You can’t perform that action at this time.
0 commit comments