コード例 #1
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)
コード例 #2
0
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)
コード例 #3
0
ファイル: coala_ci.py プロジェクト: lugnitdgp/avskr2.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()
コード例 #4
0
ファイル: coala_format.py プロジェクト: lugnitdgp/avskr2.0
def main():
    logging.warning('Use of `coala-format` binary is deprecated, use '
                    '`coala --format` instead.')

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

    return coala_main()
コード例 #5
0
ファイル: coala_format.py プロジェクト: Anmolbansal1/coala
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)
コード例 #6
0
ファイル: coala_json.py プロジェクト: lugnitdgp/avskr2.0
def main():
    logging.warning('Use of `coala-json` binary is deprecated, use '
                    'coala --json` instead.')

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

    return coala_main()