Skip to content

Instantly share code, notes, and snippets.

@tigefa4u
Forked from robertohuertasm/.licrc
Created January 17, 2022 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tigefa4u/55485d36cdf200358e3583327d6e0e14 to your computer and use it in GitHub Desktop.
Save tigefa4u/55485d36cdf200358e3583327d6e0e14 to your computer and use it in GitHub Desktop.
Simple .licrc config file for Licensebat
[licenses]
# This indicates which are the only licenses that Licensebat will accept.
# The rest will be flagged as not allowed.
accepted = ["MIT", "MSC", "BSD"]
# This will indicate which licenses are not accepted.
# The rest will be accepted, except for the unknown licenses or dependencies without licenses.
# unaccepted = ["LGPL"]
# Note that only one of the previous options can be enabled at once.
# If both of them are informed, only accepted will be considered.
[dependencies]
# This will allow users to flag some dependencies so that Licensebat will not check for their license.
ignored=["ignored_dep1", "ignored_dep2"]
[behavior]
# False by default, if true, it will only run the checks when one of the dependency files or the .licrc file has been modified.
run_only_on_dependency_modification = true
# False by default, if true, it will never block the build.
do_not_block_pr = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment