Repository URL to install this package:
|
Version:
1.26.0.dev0+gite506aa5f ▾
|
# Copyright 2018 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
from pants.rules.core import (
binary,
cloc,
distdir,
filedeps,
find_target_source_files,
fmt,
lint,
list_roots,
list_targets,
repl,
run,
strip_source_roots,
test,
)
def rules():
return [
*cloc.rules(),
*binary.rules(),
*fmt.rules(),
*lint.rules(),
*list_roots.rules(),
*list_targets.rules(),
*find_target_source_files.rules(),
*filedeps.rules(),
*repl.rules(),
*run.rules(),
*strip_source_roots.rules(),
*distdir.rules(),
*test.rules(),
]