Fork of LUCI project's render package.

This is a fork of the "render" package from its current home in
https://github.com/luci/luci-go/common/render.

The fork is intended should make the rendering library more accessible to
other projects so it can be developed independently from the mainstream
LUCI project.
8 files changed
tree: fe02b0ff82ce299caa07eed2c817798c7c16aa4b
  1. render/
  2. .travis.yml
  3. LICENSE
  4. pre-commit-go.yml
  5. PRESUBMIT.py
  6. README.md
  7. WATCHLISTS
README.md

go-render: A verbose recursive Go type-to-string conversion library.

GoDoc Build Status

Contributing

  • Sign the Google CLA.
  • Make sure your user.email and user.name are configured in git config.
  • Install the pcg git hook: go get -u github.com/maruel/pre-commit-go/cmd/... && pcg

Run the following to setup the code review tool and create your first review:

git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $HOME/src/depot_tools
export PATH="$PATH:$HOME/src/depot_tools"
cd $GOROOT/github.com/luci/go-render
git checkout -b work origin/master

# hack hack

git commit -a -m "This is awesome\nR=joe@example.com"
# This will ask for your Google Account credentials.
git cl upload -s
# Wait for LGTM over email.
# Check the commit queue box in codereview website.
# Wait for the change to be tested and landed automatically.

Use git cl help and git cl help <cmd> for more details.