├── BUILD ├── format-build.sh ├── .gitignore └── WORKSPACE /BUILD: -------------------------------------------------------------------------------- 1 | load("@io_bazel_rules_go//go:def.bzl", "go_prefix") 2 | 3 | go_prefix("github.com/lingochamp/bazel_essentials") 4 | -------------------------------------------------------------------------------- /format-build.sh: -------------------------------------------------------------------------------- 1 | buildifier WORKSPACE 2 | 3 | find . -name BUILD | xargs buildifier 4 | 5 | find . -name *.bzl | xargs buildifier 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore all bazel-* symlinks. There is no full list since this can change 2 | # based on the name of the directory bazel is cloned into. 3 | /bazel-* 4 | 5 | **/*.pyc 6 | 7 | **/.DS_Store 8 | -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- 1 | workspace(name = "com_github_lingochamp_bazel_essentials") 2 | 3 | load("//build_rules:init_go.bzl", "init_go") 4 | 5 | init_go() 6 | 7 | load("//build_rules:go.bzl", "go_repositories") 8 | 9 | go_repositories() 10 | --------------------------------------------------------------------------------