File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ # IMPORTANT!: ALL SECTIONS ARE MANDATORY
2+ [licenses]
3+ # This indicates which are the only licenses that Licensebat will accept.
4+ # The rest will be flagged as not allowed.
5+ accepted = ["MIT", "MSC", "BSD"]
6+ # This will indicate which licenses are not accepted.
7+ # The rest will be accepted, except for the unknown licenses or dependencies without licenses.
8+ # unaccepted = ["LGPL"]
9+ # Note that only one of the previous options can be enabled at once.
10+ # If both of them are informed, only accepted will be considered.
11+
12+ [dependencies]
13+ # This will allow users to flag some dependencies so that Licensebat will not check for their license.
14+ ignored=["ignored_dep1", "ignored_dep2"]
15+ # If set to true, Licensebat will ignore the dev dependencies.
16+ ignore_dev_dependencies = true
17+ # If set to true, Licensebat will ignore the optional dependencies.
18+ ignore_optional_dependencies = true
19+
20+ [behavior]
21+ # False by default, if true, it will only run the checks when one of the dependency files or the .licrc file has been modified.
22+ run_only_on_dependency_modification = true
23+ # False by default, if true, it will never block the build.
24+ do_not_block_pr = false
You can’t perform that action at this time.
0 commit comments