def main(debug=False):
    logging.warning('Use of `coala-format` executable is deprecated, use '
                    '`coala --format` instead.')

    sys.argv.append('--format')

    return coala_main(debug=debug)
def main(debug=False):
    logging.warning('Use of `coala-ci` executable is deprecated, use '
                    '`coala --non-interactive` instead.')

    sys.argv.append('--non-interactive')

    return coala_main(debug=debug)
Beispiel #3
0
def main():
    logging.warning('Use of `coala-ci` binary is deprecated, use '
                    '`coala --non-interactive` instead.')

    sys.argv.append('--non-interactive')

    return coala_main()
Beispiel #4
0
def main():
    logging.warning('Use of `coala-format` binary is deprecated, use '
                    '`coala --format` instead.')

    sys.argv.append('--format')

    return coala_main()
Beispiel #5
0
def main(debug=False):
    logging.warning('Use of `coala-format` executable is deprecated, use '
                    '`coala --format` instead.')

    sys.argv.append('--format')

    return coala_main(debug=debug)
Beispiel #6
0
def main():
    logging.warning('Use of `coala-json` binary is deprecated, use '
                    'coala --json` instead.')

    sys.argv.append('--json')

    return coala_main()