Skip to content

Commit b016518

Browse files
authoredJul 19, 2022
根据优化建议修改 (#6)
1 parent 95534e0 commit b016518

File tree

106 files changed

+213
-195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+213
-195
lines changed
 

‎.code.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ source:
88
# 提供产品代码库中工具或框架自动生成的且在代码库中的代码,没有可为空。以便后续代码统计环节进行排除等特殊处理。
99
auto_generate_source:
1010
# 自动生成代码文件的正则表达式,若无统一标识格式,可以指定具体目录,样例可参考test_source举例
11-
filepath_regex: [ ".*/service/.*" ]
11+
filepath_regex: [ ".*/service/.*"]
1212

1313
# 提供产品代码库中直接以源码形式存在的第三方代码目录或代码文件名的正则表达。
1414
# 此处备注的第三方代码在后续统计代码量环节会被排除,若代码库中不存在需要排除的第三方代码,该项配置标识可为空
1515
third_party_source:
1616
#第三方代码文件的正则表达式,若无统一标识格式,可以指定具体目录,样例可参考test_source举例
17-
filepath_regex: [ "/vendor/.*" ]
17+
filepath_regex: [ "/vendor/.*", ".*/buildSrc/.*" ]

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
# Gradle files
13-
.gradle/*
13+
.gradle
1414
build/*
1515
out/*
1616
*/build/*

0 commit comments

Comments
 (0)
Please sign in to comment.