Format and simplify intergration test (#245)
This commit is contained in:
@@ -18,9 +18,9 @@
|
||||
- `*`: 匹配路径段中的一个或多个字符。
|
||||
- `?`: 匹配路径段中的单个字符。
|
||||
- `**`: 匹配任意数量的路径段,包括零个。
|
||||
- `{}`: 用于分组条件 (例如, `**/*.{ts,js}` 匹配所有 TypeScript 和 JavaScript 文件)。
|
||||
- `[]`: 声明要匹配的路径段中的字符范围 (例如, `example.[0-9]` 匹配 `example.0`, `example.1` 等)。
|
||||
- `[!...]`: 排除要匹配的路径段中的字符范围 (例如, `example.[!0-9]` 匹配 `example.a`, `example.b`,但不匹配 `example.0`)。
|
||||
- `{}`: 用于分组条件 (例如,`**/*.{ts,js}` 匹配所有 TypeScript 和 JavaScript 文件)。
|
||||
- `[]`: 声明要匹配的路径段中的字符范围 (例如,`example.[0-9]` 匹配 `example.0`, `example.1` 等)。
|
||||
- `[!...]`: 排除要匹配的路径段中的字符范围 (例如,`example.[!0-9]` 匹配 `example.a`, `example.b`,但不匹配 `example.0`)。
|
||||
<br>
|
||||
|
||||
| 名称 | 类型 | 默认值 |
|
||||
@@ -89,4 +89,4 @@
|
||||
用于储存索引文件的文件夹。
|
||||
<br>
|
||||
|
||||
## Feature
|
||||
## Feature
|
||||
|
||||
Reference in New Issue
Block a user