Ejemplo n.º 1
0
    def setup_parser(cls, option_group, args, mkflag):
        Task.setup_parser(option_group, args, mkflag)

        option_group.add_option(
            mkflag("transitive"),
            mkflag("transitive", negate=True),
            dest="buildlint_transitive",
            default=False,
            action="callback",
            callback=mkflag.set_bool,
            help=
            "[%default] apply lint rules transitively to all dependency buildfiles."
        )

        option_group.add_option(
            mkflag("include-intransitive-deps"),
            mkflag("include-intransitive-deps", negate=True),
            dest="buildlint_include_intransitive",
            default=False,
            action="callback",
            callback=mkflag.set_bool,
            help=
            "[%default] correct both simple missing dependencies and intransitive missing deps"
        )

        option_group.add_option(
            mkflag("action"),
            dest="buildlint_actions",
            default=[],
            action="append",
            type="choice",
            choices=['diff', 'rewrite'],
            help=
            "diff=print out diffs, rewrite=apply changes to BUILD files directly."
        )
Ejemplo n.º 2
0
 def setup_parser(cls, option_group, args, mkflag):
   Task.setup_parser(option_group, args, mkflag)
   option_group.add_option(mkflag('error_on_collision'),
                           mkflag('error_on_collision', negate=True),
                           dest='exclusives_error_on_collision', default=True,
                           action='callback', callback=mkflag.set_bool,
                           help=("[%default] Signal an error and abort the build if an " +
                                 "exclusives collision is detected"))
Ejemplo n.º 3
0
 def setup_parser(cls, option_group, args, mkflag):
     Task.setup_parser(option_group, args, mkflag)
     option_group.add_option(
         mkflag('error_on_collision'),
         mkflag('error_on_collision', negate=True),
         dest='exclusives_error_on_collision',
         default=True,
         action='callback',
         callback=mkflag.set_bool,
         help=("[%default] Signal an error and abort the build if an " +
               "exclusives collision is detected"))
Ejemplo n.º 4
0
  def setup_parser(cls, option_group, args, mkflag):
    Task.setup_parser(option_group, args, mkflag)

    option_group.add_option(mkflag("transitive"), mkflag("transitive", negate=True),
      dest="buildlint_transitive", default=False,
      action="callback", callback=mkflag.set_bool,
      help="[%default] apply lint rules transitively to all dependency buildfiles.")

    option_group.add_option(mkflag("action"), dest="buildlint_actions", default=[],
      action="append", type="choice", choices=['diff', 'rewrite'],
      help="diff=print out diffs, rewrite=apply changes to BUILD files directly.")