mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 配置 allowlist 忽略 docs 目录下的文件 - 添加对 .*Test.*\.json 文件的忽略规则 - 配置 Development 相关文件的忽略路径 - 添加 FAKE_.*_KEY 正则表达式到忽略列表 - 添加 TEST_.*_TOKEN 正则表达式到忽略列表 - 设置描述信息为 "Ignore test/demo secrets"
13 lines
191 B
TOML
13 lines
191 B
TOML
[allowlist]
|
|
description = "Ignore test/demo secrets"
|
|
paths = [
|
|
'''docs/.*''',
|
|
'''.*Test.*\.json''',
|
|
'''.*Development.*'''
|
|
]
|
|
|
|
regexes = [
|
|
'''FAKE_.*_KEY''',
|
|
'''TEST_.*_TOKEN'''
|
|
]
|