Skip to content

Commit b88f729

Browse files
authored
Fix wrong indentation in doc about multi license config (#161)
1 parent bf08914 commit b88f729

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -678,12 +678,12 @@ dependency: # <16>
678678
1. The `header` section is configurations for source codes license header. If you have multiple modules or packages in your project that have differing licenses, this section may contain a list of licenses:
679679
```yaml
680680
header:
681-
- license:
681+
- path: "/path/to/module/a"
682+
license:
682683
spdx-id: Apache-2.0
683-
path: "/path/to/module/a"
684-
- license:
684+
- path: "/path/to/module/b"
685+
license:
685686
spdx-id: MPL-2.0
686-
path: "/path/to/module/b"
687687
```
688688
2. The [SPDX ID](https://spdx.org/licenses/) of the license, it’s convenient when your license is standard SPDX license, so that you can simply specify this identifier without copying the whole license `content` or `pattern`. This will be used as the content when `fix` command needs to insert a license header.
689689
3. The copyright owner to replace the `[owner]` in the `SPDX-ID` license template.

0 commit comments

Comments
 (0)