- Stories are the beginning of a conversation. It's not a bad idea to chat with the PM when picking up each story to ensure you understand their intentions. Same thing goes for the designs. Never hesitate to chat with the PM/Designer during the delivery of a story to get clarification or propose alternatives that are easier or better.
- The order or stories in Tracker is set intentionally by the PM. Please pick up the stories one at a time in order.
- Generally, there should not be multiple started stories with the same owner. If you believe you are in an exception case chat with the PM before picking up a second story.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am challiwill on github. | |
* I am challiwill (https://keybase.io/challiwill) on keybase. | |
* I have a public key ASBWhQaTmh7t_6n8oFEoLcPAivGhItATIss0tNv1-ulAXgo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for pattern in \ | |
'Ω(a).Should(b) -> Expect(a).To(b)' \ | |
'Ω(a).Should(b, c) -> Expect(a).To(b, c)' \ | |
'Ω(a).ShouldNot(b) -> Expect(a).NotTo(b)' \ | |
'Ω(a).ShouldNot(b, c) -> Expect(a).NotTo(b, c)' \ | |
'Ω(a).To(b) -> Expect(a).To(b)' \ | |
'Ω(a).ToNot(b) -> Expect(a).NotTo(b)' \ | |
'Ω(a).NotTo(b) -> Expect(a).NotTo(b)' \ | |
; do | |
find . -name '*.go' -a -not -path '*/Godeps/*' | xargs gofmt -w -r "${pattern}"; |