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